We'd like to just capture the YSOD output to use in an erorr reporting email, from a Global.asax error handler, for instance. Is there any way of leveraging the built-in ysod generator?
|
Yes there is a way that you can do this. In the Application_Error event in the global.asax file, get the last exception as an System.HttpUnhandledException. Your code will look like this:
I agree with other people's comments. You can also do this with ELMAH. |
|||||||
|
|
I would look into ELMAH (Error Logging Modules and Handlers for ASP.NET):
|
|||
|
|
|
Have you heard of ELMAH ? It might give you all the features you really want... Here is a blog post that explains a bit about it : http://www.hanselman.com/blog/ELMAHErrorLoggingModulesAndHandlersForASPNETAndMVCToo.aspx |
|||
|
|
|
I would say in general, you do not want the user to experience the YSOD. This is something I've put in web apps before to capture the error and then allow for a more graceful error page to the user...
|
|||
|
|
|
The Application_Error event in the Global.asax file is triggered whenever an unhandled exception occurs in the application. You can grab the last exception that occurred using the Server.GetLastError() method. Similarly, you could create your own custom error page by specifying it in the web.config under the customErrors section in the web.config file. By specifying a default file, you can do any custom coding when an exception is routed there. |
|||
|
|