MVC Routing with no (or a default) action name
问题 Using MVC 5, I am trying to get some friendly controller/action names working through routing. Banging my head against the wall with this. Given this controller: MyController Index(startPage, pageSize) EditAction(itemId) I am using two routes (defined under an inherited AreaRegistration class) context.MapRoute( "MyControllerRoute", "myArea/MyController/{action}/{itemId}", new { controller = "MyController", action = "Index", itemId = UrlParameter.Optional }, new[] {"MySite.Areas.MyArea