2. Log exception in Application_Error event handler
void Application_Error(object sender, EventArgs e)
{
try
{
//Get the Error.
Exception ex = Server.GetLastError();
Response.Redirect("~/YourErrorPage");
}
catch
{
//Response.Redirect("/oops.aspx");
}
}
No comments:
Post a Comment