I have the following routes defined:
routes.MapRoute(
"EventInfo", // Route name
"Events/{year}/{month}/{day}", // URL with parameters
new { controller = "Events", action = "Index", year = UrlParameter.Optional, month = UrlParameter.Optional, day = UrlParameter.Optional } // Parameter defaults
);
routes.MapRoute(
"EventType", // Route name
"Events/Type/{id}/{year}/{month}/{day}", // URL with parameters
new { controller = "Events", action = "Type", id = UrlParameter.Optional, year = UrlParameter.Optional, month = UrlParameter.Optional, day = UrlParameter.Optional } // Parameter defaults
);
routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}", // URL with parameters
new { controller = "Home", action = "Index", id = UrlParameter.Optional } // Parameter defaults
);
I am seeing some "weird" behavior when navigating. For instance I have an Html.ActionLink on my main menu which is defined like:
<li class="@item.Class">@Html.ActionLink(item.Title, item.Action, item.Controller, null, new { @class="standard" } )</li>
I also have a sidebar secondary menu defined the same way in my View - I just change what Model feeds the 2 different (Partial) Views. For instance, my Main Menu's Model looks like:
public MenuItems()
{
List = new List<Menu> {
new Menu { Controller="Home", Action="Index", Title="Home", Class="grid-2 menubutton" },
new Menu { Controller="Info", Action="Index", Title="Information", Class="grid-2 menubutton" },
new Menu { Controller="Events", Action="Index", Title="Events", Class="grid-2 menubutton" },
new Menu { Controller="Guilds", Action="Index", Title="Guilds", Class="grid-2 menubutton" },
new Menu { Controller="Populace", Action="Index", Title="Caer Galenites", Class="grid-3 menubutton" },
new Menu { Controller="Loop", Action="Index", Title="Get in the Loop", Class="grid-3 menubutton" }
};
}
Now, I am at the point of testing my Events page (see the Routes above) so I am altering the URL once I am on the main Events page. i.e.: I click on Events in the main menu and get to http://site.com/Events and I see my event listings. I then append a year like http://site.com/Events/2011 and the filter works. Append a Month like http://site.com/Events/2011/9 and now I see the current months' events. So far, so good.
I then hover over one of the sidebar menu items expecting to see http://site.com/Events/Type/Kingdom but instead I am seeing http://site.com/Events/Type/Kingdom/2011/9. I hover over my main menu link and instead of http://site.com/Events I see http://site.com/Events/2011/9. If I hover over the other Main Menu items they are showing the correct URLs.
Why? How do I "fix it"?
TIA