Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a dynamic list of ActionLinks generated at run time like this:

@Html.ActionLink(x.Name, "Index", "User", new { x.ID }, null)

so I'm hitting the Index method on the User controller.

I also have my RouteConfig.cs (it's an MVC4 app) set as follows:

public static void RegisterRoutes(RouteCollection routes)
    {
        routes.IgnoreRoute("{resource}.axd/{*pathInfo}");

        routes.MapHttpRoute(
            name: "DefaultApi",
            routeTemplate: "api/{controller}/{id}",
            defaults: new { id = RouteParameter.Optional }
        );

        routes.MapRoute(
            name: "Default",
            url: "{controller}/{action}/{id}",
            defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
        );

        routes.MapRoute(
            name: "",
            url: "{controller}/{action}/{id}",
            defaults: new { controller = "User", action = "Index", id = UrlParameter.Optional }
        );
    }

This gives me the link 'server/application/User/Index/1' in my list of links.

What do I need to do in the list generation and / or routing file to change this to server/application/User/1?

share|improve this question

1 Answer

up vote 3 down vote accepted

Add a route that doesn't need an action but won't clash with other routes

routes.MapRoute("User", "User/{id}", 
                         new { controller = "User", action = "Index" });
share|improve this answer
Worked liked a charm - thanks! – markp3rry Nov 26 '12 at 16:23

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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