S
Steve Taylor
Here's what happening:
- I have a global error trap set in global.asax defined as:
protected void Application_Error(Object sender, EventArgs e) {
HttpContext.Current.Server.Transfer("/salesnow/errors/SalesNow_Error.aspx"); }
- My users are on occassion are getting the error:
"Server Error in '/Salesnow' Application - Request timed out."
- No aspx page is referenced anywhere in the *ugly* default error page.
- My error trap is designed to e-mail me notices of errors.
- I am seeing about twice as many errors logged in the Win2003 PerfMon window for the web servers (as e-mails).
- Is this happening because my re-directed error page is timing out? What is the best way to trap for this?
TIA,
Steve
- I have a global error trap set in global.asax defined as:
protected void Application_Error(Object sender, EventArgs e) {
HttpContext.Current.Server.Transfer("/salesnow/errors/SalesNow_Error.aspx"); }
- My users are on occassion are getting the error:
"Server Error in '/Salesnow' Application - Request timed out."
- No aspx page is referenced anywhere in the *ugly* default error page.
- My error trap is designed to e-mail me notices of errors.
- I am seeing about twice as many errors logged in the Win2003 PerfMon window for the web servers (as e-mails).
- Is this happening because my re-directed error page is timing out? What is the best way to trap for this?
TIA,
Steve