I've been playing around with ELMAH in my MVC4 application. I've downloaded ELMAH from Nuget and it sets the configuration for me. I know that ELMAH for MVC will catch errors in controllers, but how about errors else where? For instance error inside Application_Start? I've managed to log errors with ELMAH in the Application_Error but unable to redirect it to MVC 4 error page in the /Shared/ folder. Is even this possible?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
yes - for a local environment, the redirect won't work unless you have the web.config set to customErrors mode="On" defaultRedirect="Error" and then you need to disable the global filter HandleError. Comment out the HandleErrorAttribute line in RegisterGlobalFilters.
|
|||||||||
|