by George
31. January 2010 04:19
I've been working on an ASP.NET MVC project and needed to nest an <h2> element inside of an anchor tag because of a CSS-only menu I am using.
<a href="http://somethinghere.com/page/1"><h2>Link Text</h2></a>
If you use the traditional ActionLink method in ASP.NET MVC, you can't do that. At least, I haven't found a way how.
I did find a work-around, courtesy of Stack Overflow:
<a href="<%= Url.Action("show", "page", new { id = Parentpage.Id }) %>"><h2><%= Parentpage.PageName %></h2></a>
It's a hack, but it produces the correct output.
c026f953-0040-4616-a684-bcc020373c65|0|.0
Tags: