在一个ASP.NET MVC视图中,我想包括一个形式的链接:
<a href="blah">Link text <span>with further descriptive text</span></a>
正在尝试将< span>在调用Html.ActionLink()的linkText字段中的元素最终会被编码(如预期的那样)。
有没有任何推荐的方法来实现这一点?
解决方法
您可以使用Url.Action为您建立连结:
<a href="<% =Url.Action("Action","Controller")%>">link text <span>with further blablah</span></a>
或使用Html.BuildUrlFromExpression:
<a href="<% =Html.BuildUrlFromExpression<Controller>(c => c.Action()) %>">text <span>text</span></a>