The easiest way to deal with unhandled exceptions gracefully is to (A) use Elmah to hook unhandled exceptions and log them, and (B) trap the unhandled exception with the global.asax's Application_Error() method. Here's mine:
protected void Application_Error( object sender , EventArgs e )
{
// only do something special if the request is not from the local machine.
if ( !Request.IsLocal )
{
Exception exception = Server.GetLastError() ;
HttpException httpException = exception as HttpException ;
RouteData routeData = new RouteData() ;
routeData.Values.Add( "controller" , "Error" ) ;
if ( httpException != null )
{
int httpStatusCode = httpException.GetHttpCode() ;
switch ( httpStatusCode )
{
case 404 : routeData.Values.Add( "action" , "Http404FileNotFound" ) ; break ;
default : routeData.Values.Add( "action" , "HttpError" ) ; break ;
}
routeData.Values.Add( "exception" , httpException ) ;
}
else
{
routeData.Values.Add( "action" , "Http500InternalServerError" ) ;
routeData.Values.Add( "exception" , exception ) ;
}
Response.Clear() ;
Server.ClearError() ;
HttpContextBase contextWrapper = new HttpContextWrapper( Context ) ;
RequestContext newContext = new RequestContext( contextWrapper , routeData ) ;
IController errorController = new ErrorController() ;
errorController.Execute( newContext ) ;
}
return ;
}
The above method:
for local requests (e.g., the developer's machine), the exception is not handled and ASP.Net hands back the standard Yellow Screen O'Death.
handles remote requests by displaying (not redirecting -- the user sees the original URL) a friendly error page that doesn't leak implementation information (like stack traces, etc.) The logic goes like this:
If the exception can be cast to an HttpException, then the HTTP status (response) code is examined. An Http status code of 404 displays our "Resource Not Found" view, with a 404 response status; other HttpExceptions get a different "Http Error" view that sets the Response Status to 500 (Internal Server Error).
If the exception cannot be cast to an HttpException, then an "Internal Error" view is returned, which also sets the Response status to 500 (Internal Server Error).
Easy! You might want to use log4net where appropriate (say, at the point the exception is thrown) to log any contextual data that might help debug the root cause of the exception.