Hi,
I have a small ASP.Net MVC 2 project that contains two areas as well as some shared views. In my root HomeController, I have added the HandleError attribute and when I throw an exception in one of the actions, I get redirected to the Error.aspx page.
I have another controller, TitlesController, that resides under an Area and when that generates an exception I'm taken to the standard yellow ASP.Net error page. I have decorated TitlesControlelr n the same way as the HomeController.
Can anyone tell me if HandleError is supported on controllers that reside in an Area?
I should note that when HomeController directs me to the Error.aspx, I don't see any stack trace. I'm led to believe that when when viewing these pages locally, MVC 2 should display a stack trace.