vote up 1 vote down star

I'd like to move an asp.net mvc response to

http://site.com/emails/list/rob@email.com

Using RedirectToAction("list", "emails", new { id = "rob@email.com"}); takes you to http://site.com/emails/list?id=rob@email.com.

What am I doing wrong?

Thanks,

Rob

flag

50% accept rate

2 Answers

vote up 0 vote down check

Seems like misconfigured routing. Your RegisterRoutes method in Global.asax.cs should look like this:

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

        routes.MapRoute(
            "Default",                                              // Route name
            "{controller}/{action}/{id}",                           // URL with parameters
            new { controller = "Account", action = "Login", id = "" }  // Parameter defaults
        );

    }

In line "{controller}/{action}/{id}" presence of {id} means that is going to be substituted by it's value.

Any other parameter that is not present in routing string would be decoded as ?some_param=value

link|flag
vote up 0 vote down

Ah - because the default route requires 'id', your parameters in the view (html) and the controller must be called id.

link|flag

Your Answer

Get an OpenID
or

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