Q:
I use ELMAH - Error Logging Modules And Handlers.
but i wanna to show nice error page to the user .
My question has two parts:
Is there any preferred design or information required in this page.(requirements) .any suggestions , links will be great.
When i comment the
Clear errorline , The error page is shown to the user , otherwise the error page doesn't appear.Why we clear the errors?and How to show the error page .
protected void Application_Error(object sender, EventArgs e)
{
HttpContext ctx = HttpContext.Current;
Exception exception = ctx.Server.GetLastError();
string errorInfo =
"<br>Offending URL: " + ctx.Request.Url.ToString() +
"<br>Source: " + exception.Source +
"<br>Message: " + exception.Message +
"<br>Stack trace: " + exception.StackTrace;
ErrHandler.WriteError(errorInfo);
ctx.Server.ClearError();
}
<customErrors mode="On" defaultRedirect="Error.aspx"/>