Undetected runtime errors

  • Thread starter Thread starter James
  • Start date Start date
J

James

I have the Application_Error event method in the Global.asax setup to
send me an email regarding errors. But, I am getting reports from
users that a specific page is producing a runtime error message from
time to time, but I am never receiving any email notification
regarding the error.

Does anyone know why some runtime errors make it past the global
Application_Error catch-all event and how to detect these kind of
errors?
 
Thanks Raterus, but I already have my Global.asax.cs code properly setup and
I am not using a page level error handler.

It is almost as if the error is outside the scope of the application error
handler. The page in question is embedded within an IFRAME that refreshes
every 30 seconds.

http://www.devdex.com/asp/message.asp?p=2912&r=4178971
This may help you, there are a few possible solutions.
 
Thinking in another way, is there anything happened that prevents the aspnet
working process from sending e-mail to you?

Perheps you can try writing a small web applpication that just send a email
to you with the same setting as the mentioned web page.
 
Back
Top