Pages

Banner 468 x 60px

 

Tuesday, 4 September 2012

MVC Action link with Html text.

In this post I will explain how to write MVC Action link with Html text.

MVC Razor View

<a href='@Url.Action("MyAction", "MyController")'>
     <span>My Asp.Net</span>
</a>


MVC Html View

<a href='<%: Url.Action("MyAction", "MyController") %>'>
     <span>My Asp.Net</span>
</a>

No comments:

Post a Comment