I have an exising asp.net MVC app, and I want to add 'Areas' now.
What are the ramifications of this? Any gotchas?
I have an exising asp.net MVC app, and I want to add 'Areas' now.
What are the ramifications of this? Any gotchas?
If you add Areas then all of your routing will be different. Be sure to test all of your routes. Things might get especially hairy if you are going from one area to another - you will need to specify the area the routevalues (new {area = "myArea"}).