vote up 2 vote down star
1

I have created a new route like the following:

   routes.MapRoute(
     "BlogYMD",
     "blog/date/{year}/{month}/{day}",
     new { controller = "Blog", action = "Date", year = "2009", month="01", day="01" });

The view simply returns a concatenation of year, month and day. This works fine for URL's like:

http://localhost/blog/date/2009/01/01

However if I enter this URL:

http://localhost/blog/date/2009

I would expect the default values for month and day to be passed to the date method. However they aren't, all the parameters on the method come through as null.

Am I missing something obvious?

flag
How are they coming through as null, you should have the parameters as integers, the binding system in mvc will take of casting them. – meandmycode Apr 13 at 12:47

2 Answers

vote up 1 vote down check

You don't show the rest of your routes, but I suspect you have another route above this one in your global.asax.CS (for example, the default route) which matches the second URL.

link|flag
Cheers for the answer. – Michael Edwards Apr 13 at 13:03
vote up 1 vote down

The order in which you declare routes is important. You want your custom route(s) declared before the default.

link|flag

Your Answer

Get an OpenID
or

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