I want to be able to access the same page in two different ways:
First, with a parameter, to show some specific information.
routes.MapRoute(
"About",
"About/{id}",
new { controller = "About", action = "Index" }
);
Second, without parameter, to show general things.
routes.MapRoute(
"About",
"About",
new { controller = "About", action = "Index" }
);
How can I build the route to accept both options?
and then: