I am rendering a menu from a Partial Action directly to the layout, using:
@Html.Action(MVC.Menu.Index())
This action, determines which Men
I solve this issue in a very easy way, simply by adding to all routes that are not in area empty area route like this:
routes.MapRoute( "Default", "{controller}/{action}/{id}", new { controller = "Home", action = "Index", area = "", id = UrlParameter.Optional });