vote up 0 vote down star

There seem to be a lot of issues on SO dealing with MapRoute problems. I've read through a bunch of them, but I can't see what I'm doing wrong in my implementation. I've got the following routes set up:

routes.MapRoute( _
    "FilesDisplay", _
    "{controller}/{action}/{year}/{month}", _
    New With {.controller = "Files", .action = "Display", .year = "", .month = ""})

routes.MapRoute( _
    "Default", _
    "{controller}/{action}", _
    New With {.controller = "Files", .action = "Index"})

and the following RouteLink:

<%=Html.RouteLink("Show", "FilesDisplay", New With {.year = 2008, .month = 5})%>

However, the resulting URL for "Show" is /Files/Index/2008/5. Why is it picking up the Index action instead of the Display action?

Edit: As a lark I changed the second route to .action = "Display" just to see if I could get the URL to change, and it still resolves to /Files/Index/2008/5.

Edit 2: I also tried:

<%=Html.ActionLink("Show", "Display", "Files", New With {.year = 2008, .month = 5}, Nothing)%>

but that also resolves to /Files/Index/2008/5. Why is it that no matter what I specify for an action it's defaulting to Index?

flag

What version of ASP.NET MVC are you running on? There was a problem with RouteLinks whereby you had to explicitly state the controller and action in one of the releases. – Garry Shutler Mar 31 at 13:12
I believe this is RC1 (where can I check to be sure?). – gfrizzle Mar 31 at 13:14
I think it displays in your program list under the control panel. I don't think you can have more than one version installed. – Ayo Mar 31 at 13:21
It reads "Microsoft ASP.NET MVC RC", so I assume that's RC1. – gfrizzle Mar 31 at 13:24
what version of IIS are you running? – Ayo Mar 31 at 13:47
show 1 more comment

1 Answer

vote up 0 vote down check

Upgrading to MVC RC 1.0 seemed to fix ActionLink but not RouteLink. Therefore I'm moving forward with ActionLink. I'd love to know why RouteLink doesn't want to work though.

link|flag

Your Answer

Get an OpenID
or

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