I have a large existing application built on ASP.NET MVC2 RC2.
All of my links look like this: htp//site/controller/action/id
I just added an Area called: BigBird.
Now when I'm in the BigBird area, all of my links look like this: htp://site/BigBird/controller/action/id
Problem is that none of those controllers/actions exist in my new Area. So I have to go through all of my actionlinks all over my application and put this routevalue: area = string.empty
Is there any way around this?
Thanks a million.