public static void RegisterRoutes(RouteCollection routes) { routes.IgnoreRoute("{resource}.axd/{*pathInfo}"); routes.MapRoute( name: "Zing", url: "zing/{type}/{p}", defaults: new { controller = "zing", action = "Index", type = UrlParameter.Optional } ); routes.MapRoute( name: "Default", url: "{controller}/{action}/{id}", defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional } ); }
Showing posts with label MVC. Show all posts
Showing posts with label MVC. Show all posts
Friday, December 06, 2013
Routing
When adding custom routing in MVC, any custom routing must go BEFORE the default. For example:
Subscribe to:
Posts (Atom)
Fixes to common .NET problems, as well as information on .NET features and solutions to common problems that are not language-specific.
Fixes to common .NET problems, as well as information on .NET features and solutions to common problems that are not language-specific.