Using MVC3/4 if you have area’s in your solution, what is the order that it will try and resolve the areas and root level controllers?
For example:
Does it first try the root level routes and then the area level routes in alphabetical order?
Or does it first check the area level routes in alphabetical order and then the root level?
Thanks
MVC resolvers area specific routes first and then root level routes. This is because by default you have next code in Global.asax:
I have not tried it but if you would like to change this behavior you may try to swap these code lines in you project.