How does one pass an inline anchor using the UrlHelper in ASP.NET MVC?
For example, if I have a URL:
/Foo/Bar/Information/FAQ#toc
And I was using the following Url.Action to get everything except the #toc fragment
<a class="next" href='@Url.Action("Bar", "Foo", new { subPath = "Information/FAQ" } )'>My Link Text</a>
My question: is there an overload for Url.Action to pass in the #toc fragment? I'd rather not use some hardcoded concatenation or @Url.Content (admittedly the way I cheat most of the time).