views:

66

answers:

0

I exclusively use named routes (as a best practice) when using ASP.NET Routing. The RouteCollection object has an Add function that allows you to easily add a named route to the collection. However, if you need to insert a named route (due to routing order) the Insert function does not have a name parameter and therefore it doesn't seem possible to insert a named route.

How do you insert a named route?