ASP.NET MVC routing issue

Ugh, I’ve been away from .NET for a while so I’m a bit rusty. Here’s my problem.

I’ve got two websites. One is a copy of the other, I even went ahead and remade a copy of the original a second time hoping it would alleviate the issue I’m having but it didn’t.

On both pages I have a calendar so the route is

routes.MapRoute("Calendar", "calendar/{action}/{date}", 
    new { controller = "Calendar", action = "Index" });

That allows for /Calendar to show the current month or /Calendar/Date/2010-12 to show another month or /Calendar/Edit/4

The issue is on the original site /Calendar works. It shows the Calendar page with the current month. On the copy site /Calendar gives a 404 but /Calendar/Index shows the Calendar page with the current month. /Calendar/Date/2010-12 works on both.

I can’t find the issue. Global.asax is a direct copy. Anyone run into this issue before? I’m stuck.

OK, I know its a setting because uploading the site to a live server allows it to work correctly.

Man, I’ve been away too long. :slight_smile: