log server errors while customerrors=on

  • Thread starter Thread starter Daves
  • Start date Start date
D

Daves

think you got my idea, the user shouldn't see the errors but I'd like to log
them though and even run some notifier code... how would I do that?
 
Put your code to log the errors in the Global.asax under the
Application_Error. Any code in there will be run anytime there is an
unhandled exception.
 
Back
Top