Tracing......

  • Thread starter Thread starter Harry Smith
  • Start date Start date
H

Harry Smith

My Web application is going to production. It may through some error in the
production which is hard to reproduce. How to keep the production
environment in a such a way that I can trace back what went wrong.
I am using VB.Net to create the ASP.Net application using .Net Framework 1.1
Thanks for your advice.
Harry
 
Hi Harry:

Are you handling the Application's Error event? This is a good place
to inspect exceptions that occur during a request and save diagnostic
information, like the page name, the stack trace, etc.
 
Back
Top