Is there an easy way to get the MvcRouteHandler to convert all hyphens in the action and controller sections of an incoming URL to underscores as hyphens are not supported in method or class names.

This would be so that I could support such structures as sample.com/test-page/edit-details mapping to Action edit_details and Controller test_pagecontroller while continuing to use MapRoute method.

I understand I can specify an action name attribute and support hyphens in controller names which out manually adding routes to achieve this however I am looking for an automated way so save errors when adding new controllers and actions.

link|improve this question

4  
Hyphens are seen as more user friendly in URLs. Underscores clash with underlined links. – Will Morgan Jan 15 '10 at 10:47
You could take a look at this article showing how to implement a custom MvcRouteHandler. – Darin Dimitrov Jan 15 '10 at 11:20
possible duplicate of Asp.Net MVC: How do I enable dashes in my urls? – martin clayton Nov 6 '11 at 10:40
feedback

4 Answers

up vote 12 down vote accepted

I have worked out a solution. The requestContext inside the MvcRouteHandler contains the values for the controller and action on which you can do a simple replace on.

Public Class HyphenatedRouteHandler
    Inherits MvcRouteHandler

    Protected Overrides Function GetHttpHandler(ByVal requestContext As System.Web.Routing.RequestContext) As System.Web.IHttpHandler
        requestContext.RouteData.Values("controller") = requestContext.RouteData.Values("controller").ToString.Replace("-", "_")
        requestContext.RouteData.Values("action") = requestContext.RouteData.Values("action").ToString.Replace("-", "_")
        Return MyBase.GetHttpHandler(requestContext)
    End Function

End Class

Then all you need to replace the routes.MapRoute with an equivalent routes.Add specifying the the new route handler. This is required as the MapRoute does not allow you to specify a custom route handler.

routes.Add(New Route("{controller}/{action}/{id}", New RouteValueDictionary(New With {.controller = "Home", .action = "Index", .id = ""}), New HyphenatedRouteHandler()))
link|improve this answer
How would you use @Html.Actionlink to point to the hyphen url? @Html.ActionLink("Test", "Action", "ControllerName-Hyphen") In the above case actionlink doesn't know how to handle the hyphens would I have to create another extension that would replace the "-" with ""? I would like the generated url to have the hyphen in there – DotnetShadow Jul 14 '11 at 3:41
Write your action link with the hyphens in, when the MVC looks up the route it will use the HyphenatedRouteHandler to resolve it and generate the full URL. – John Jul 14 '11 at 11:08
Ok ok looks like it does work well, I was just getting a syntax check problem from resharper because it doesn't know about the mapping thanks – DotnetShadow Jul 16 '11 at 1:07
feedback

C# version of John's Post for anyone who would prefer it: C# and VB version on my blog

public class HyphenatedRouteHandler : MvcRouteHandler{
        protected override IHttpHandler  GetHttpHandler(RequestContext requestContext)
        {
            requestContext.RouteData.Values["controller"] = requestContext.RouteData.Values["controller"].ToString().Replace("-", "_");
            requestContext.RouteData.Values["action"] = requestContext.RouteData.Values["action"].ToString().Replace("-", "_");
            return base.GetHttpHandler(requestContext);
        }
    }

...and the new route:

routes.Add(
            new Route("{controller}/{action}/{id}", 
                new RouteValueDictionary(
                    new { controller = "Default", action = "Index", id = "" }),
                    new HyphenatedRouteHandler())
        );

You can use the following method too but bear in mind you would need to name the view My-Action which can be annoying if you like letting visual studio auto generate your view files.

[ActionName("My-Action")]
public ActionResult MyAction() {
    return View();
}
link|improve this answer
This worked great... however watch out for controller = "Default". I got a 404 a couple times before noticing that and changing it to "Home". – Jon Freeland Aug 16 '10 at 5:31
How would you use @Html.Actionlink to point to the hyphen url? @Html.ActionLink("Test", "Action", "ControllerName-Hyphen") In the above case actionlink doesn't know how to handle the hyphens would I have to create another extension that would replace the "-" with ""? I would like the generated url to have the hyphen in there – DotnetShadow Jul 14 '11 at 3:41
feedback

All you really need to do in this case is name your views with the hyphens as you want it to appear in the URL, remove the hyphens in your controller and then add an ActionName attribute that has the hyphens back in it. There's no need to have underscores at all.

Have a view called edit-details.aspx

And have a controller like this:

[ActionName("edit-details")]
public ActionResult EditDetails(int id)
{
    // your code
}
link|improve this answer
This works for actions but not for controllers, at least not in MVC 1 – John Feb 11 '11 at 14:40
feedback

Don't know of a way without writing a map for each url:

routes.MapRoute("EditDetails", "test-page/edit-details/{id}", new { controller = "test_page", action = "edit_details" });
link|improve this answer
This is what I meant by "manually adding routes" and what I am trying to avoid. – John Jan 15 '10 at 11:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.