My asp.net mvc 2 app requires a mandate parameter as part of all urls. (The mandate id will later help keeping seperate "virtuell installations" apart.) To make this work I added a route like this:

routes.MapRoute(
                "Default", // Route name
                "{mandate}/{controller}/{action}/{id}", // URL with parameters
                new { mandat = "2" /* hardcoded for now */,
                controller = "Home", action = "Index", id = UrlParameter.Optional } // Parameter defaults
            );

This works fine except for authentication redirects. If I try to access a function with [Authorize] attribute http://localhost:63174/2/Account/ProtectedAction I get redirected to http://localhost:63174/Account/LogOn?ReturnUrl=%2f2%2fAccount%2fProtectedAction. [Note the missing mandate parameter before /Account/LogOn.]

How can I fix the redirection process to handle the additional parameter correctly?

Thanks, Duffy

link|improve this question

72% accept rate
I am still very keen on getting this resolved... – duffy Oct 19 '11 at 13:13
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.