Hi, I'm trying to create a link with Url.Action, which ends with a #something; I presume there's something in the route values to do this properly, but I couldn't find it with Google.
So far, I tried Url.Action("action", "controller", new {id="something", Area="area"})
. The resulting link is the expected /action/controller/area, but I can't tack the #something in the end.
Url-wise, I could probably get away with saying <a href="<%= Url.Action(..)
%>#something">
but that doesn't strike me as particularly nice; I'm looking for a better solution.