Is there a way to create a strongly typed T4MVC ActionLink with a hash in it?
For example, here is the link I'd like to create:
<a href="/Home/Index#food">Feed me</a>
But there's no extension to the T4MVC object that can do this.
<%= Html.ActionLink("Feed me", T4MVC.Home.Index()) %>
So, what I end up having to do is create an action, and then embed it that way:
<a href="<%= Url.Action(T4MVC.Home.Index()) %>"#food>Feed me</a>
This isn't very desirable. Anyone have any ideas/suggestions?
Thanks in advance