I want to transfer all unhandled exceptions to an error page in Asp.Net MVC. What is the way to handle the unhandled exceptions in Asp.net MVC? Is there anything like application_error?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
check out the HandleError attribute. There's a good write up here. |
||||
|
|
|
If you are using the standard setup, your controller(s) can do this by overriding one of the methods (proabably Alternatively, you can do this via filters (for example |
|||