I'm looking for a standard way to handle errors in asp.net mvc 2.0 or 3.0
- 404 error handler
- Controller scope exception error handler
- Global scope exception error handler
Thanks all
|
I'm looking for a standard way to handle errors in asp.net mvc 2.0 or 3.0
Thanks all |
|||||
|
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
Check out the answers to this question |
|||||||
|
|
Not sure about best practices and depending on what you want to do with the error, would a simple solution not be to use the customErrors setting in the web.config file? For catching unhandled errors I sometimes make use of the Application_Error method in the Global.asax file. Also, Take a look at this SO post |
|||
|
Here is the most detailed answer to "404" part of your question. Despite the main topic of that is 404 it would give you an idea about how to apply that to other error types. Although, I can't state it clearly as the "best practice" since you'll need a layer supertype controller with that approach. I'd better catch those As for arbitrary exceptions throughout your MVC-app - don't forget about |
|||
|
|
|
For controller scope errors try using a custom Exception attribute i.e.
Then decorate the controllers with the attribute and error handling should be yours
Doesn't help if the error is with the routing though - i.e. it can't find a controller in the first place. For that try the Application Error handler in Global.asax i.e.
I don't know if it's 'best practice' though. Does work. |
|||
|
|
|
A good example shown in this Error Handling Link. After capturing the error you could use Elmah or log4net to record the error then present the user with a error page. |
|||
|
|
|
Check out this blog post: |
||||
|
|