Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am migrating a site from ASP.NET MVC 1 to ASP.NET MVC 2. At the moment, the site supports the following routes:

/{country}/{language}/{controller}/{action}
/{country}/{controller}/{action}
/{language}/{controller}/{action}
/{controller}/{action}

The formats for country and language are distinguishable by Regex and have suitable constraints. In MVC 1, I registered each of these as a separate route - for each of around 20 combinations. In MVC 2, I have been trying to get the same thing working with one route to cover all four cases, using UrlParameter.Optional, but I can't seem to get it working - if I define country and language as both optional, then the route /Home/Index for example doesn't successfully match the route. This is what I am trying to do:

routes.MapRoute("Default",
    "{country}/{language}/{controller}/{action}",
    new { country = UrlParameter.Optional, language = UrlParameter.Optional,
        controller = "Home", action = "Index" },
    new { country = COUNTRY_REGEX, language = LANGUAGE_REGEX });

Is this just impossible because my optionals are at the beginning of the route, or am I just missing something? I can't find any documentation to either tell me what I am doing is impossible or to point me in the right direction.

share|improve this question
I'm also interested by the trick to achieve such a routing system if it's possible... – Stephane Jun 10 '10 at 13:47
Rather than specifying them all in one, why not just define multiple routes to handle it? – Brian Mains Jun 10 '10 at 14:06
If you read the middle bit of the question, that's what I'm doing at present. But at four combinations times 20 different types of route that's a lot of mapping. I'm trying to find out if I can simplify this using UrlParameter.Optional. – David M Jun 10 '10 at 14:13

1 Answer

up vote 2 down vote accepted

Hmm. Interesting.

Here's the best I could come up with. I'm guessing that this is a bad idea, but it's the only workaround I could think of. I'd be interested to hear some suggestions/concerns/complaints.

You could map a myopic route like this:

routes.MapRoute(
    "Localized",
     "{*loc}",
     new { controller = "Localizer", action = "RedirectIt" },
     new { loc = REGEX_CONSTRAINT_FOR_ENTIRE_ROUTE_VALUE }
); 

Then, in your Localizer controller, you can redirect to the correct action however you'd like:

public class LocalizerController : Controller
{
    public ActionResult RedirectIt(string loc)
    {
        //split up the loc string
        //and determine the correct redirect path for the request
    }
}

I'm a man of cheap tricks. What can I say?

share|improve this answer
Well, worth a +1 for being the only answer and coming up with something that could be workable - but obviously I'd rather avoid the redirect. Thanks though. – David M Jun 15 '10 at 7:46
Yeah. It's not pretty. And I wouldn't use it myself. But, hey, I think it might be the only viable option. – weirdlover Jun 15 '10 at 8:43
Well, it's definitely the best answer I've had (!), so gets the tick... – David M Jun 18 '10 at 13:45

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.