html 个 ActionLink 中的实体
html entity in ActionLink
如何在 ActionLink 中包含 html 个实体。例如下面是»
的情况。
<p>@Html.ActionLink("Link Text »", "Index", new { }, new { @class = "btn btn-warning", @role = "button" })</p>
改用Url.Action
<p><a href=@Url.Action("Index") role="button"><span class="btn btn-warning">Link Text »</span></a></p>
如何在 ActionLink 中包含 html 个实体。例如下面是»
的情况。
<p>@Html.ActionLink("Link Text »", "Index", new { }, new { @class = "btn btn-warning", @role = "button" })</p>
改用Url.Action
<p><a href=@Url.Action("Index") role="button"><span class="btn btn-warning">Link Text »</span></a></p>