Html.Raw和更多替换

时间:2013-12-12 15:22:57

标签: c# asp.net-mvc string razor replace

我在Razor(.cshtml文件)中有这段代码:

<div class="category">
    @Html.Raw(Model.CategoryLinks(" | ").Replace("Fotogallery", ""))
</div>  

我不仅要将“Fotogallery”替换为NULL,还要替换其他3个值:

  • “videogallery”“musicgallery”

我该怎么办?你能帮帮我吗?

1 个答案:

答案 0 :(得分:0)

string.Replace()返回带替换的字符串,因此您可以链接调用,例如:

@Html.Raw(Model.CategoryLinks(" | ").Replace("Fotogallery", "").Replace("videogallery", "").Replace("musicgallery", ""))