ASP.NET MVC ActionLink生成以下HTML

时间:2010-09-02 18:29:56

标签: asp.net-mvc-2

如何使用ActionLink(不是format throw css)在ASP.NET MVC中生成以下代码

<a href="#"><anotherHtmlElement>Title</anotherHtmlElement></a>
example
<a href="#"><strong>Title</strong></a>

3 个答案:

答案 0 :(得分:0)

除非您引入新的htmlHelper扩展方法,否则不能。

答案 1 :(得分:0)

为什么这样? <怎么样

 <anotherHtmlElement><a href="#">Title</a></anotherHtmlElement>

此外,您应该在CSS中处理格式化,而不是使用<strong>

答案 2 :(得分:0)

为什么不使用“Url.Content”?像:

 <p>
   Xopto Text <a href="@Url.Content("~/Controller/Action")">in the Controller/Action directory</a>.
 </p>