ASP .NET MVC ActionLink

时间:2015-12-22 08:08:23

标签: asp.net-mvc html5 razor

我试图在下面的代码中使用(2)红色和粗体,但它只是显示标记。我尝试了Html.Raw(),但它返回了无法在ActionLink中使用的IHtmlString。

@{String surveyCount = "Survey <b>(2)<b>"; }
@Html.ActionLink(surveyCount, "Index", "Student")</a></li>

2 个答案:

答案 0 :(得分:0)

@{
 string surveyCount = 2;
 }

<a href="@Html.Action("Index","Student")">Survey <b>@surveyCount</b></a>

可以是这样的

答案 1 :(得分:0)

<a href="@Url.Action("Index", "Student")">Survey <span class="danger">(2)</span></a>