How can I add a hash fragment to T4MVC route dictionary ActionResult?
问题 I have an extension method that returns an ActionResult (simplified for demonstration purposes): public static ActionResult GetTestActionResult(this HtmlHelper htmlHelper, int productId) { return MVC.Products.Details(productId); } I'm using this in an Html.ActionLink: @Html.ActionLink("Product Details", Html.GetTestActionResult(Model.ProductId), new { @class = "button blue" }); I'm using a custom jQuery plugin for tabs, that uses these hash fragments for navigation. I want to add the tab