2.0: Application_Error()

  • Thread starter Thread starter R.A.M.
  • Start date Start date
R

R.A.M.

Could you tell me please how can I get some information about error in
Global.asax Application_Error()?

void Application_Error(object sender, EventArgs e)
{
// Here I need to get some information about error
Response.Redirect("Problem.html");
}

Thank you very much
/RAM/
 
Server.GetLastError will return the last uncaught exception. You'll often
want to check it's InnerException (first check for null) as GetLastError is
likely to return a somewhat meaningless HttpUnhandledException.

Karl
 
Back
Top