Why map special routes first before common routes in asp.net mvc?
问题 From the www: ...The routing engine will take the first route that matches the supplied URL and attempt to use the route values in that route. Therefore, less common or more specialized routes should be added to the table first, while more general routes should be added later on... Why should I map specialized routes first? Someone can give me an example please where I can see the failing of \"map common route first\" ? 回答1: The routing engine will take the first route that matches the