Simple ASP.NET MVC Routing question
- by Robert
Hi there, I have two pages in my simple MVC App with two defined routes:
routes.MapRoute(
"Results", // Route name
"Results/{id}", // URL with parameters
new { controller = "Results", action = "Index", id = "" } // Parameter defaults
);
routes.MapRoute(
"Default",…