2.0: Application_Error()

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/
 
K

Karl Seguin [MVP]

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,582
Members
45,065
Latest member
OrderGreenAcreCBD

Latest Threads

Top