How to catch Server Error?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello

I have application that is hosted at hosting company. I implemented
Application_Error at global.asax, but it does not catch all errors. Errors
that are labeled like: Server Error.

I wish to catch all errors. Any suggestions?

Thank you
Milan
 
If it is truly a server error, then you probably won't be able to capture
because it is most likely generated by IIS.

You can always create your own IIS error files as ASP.NET pages; however,
you will need to be able to configure IIS to be able to accomplish this.
You might check with your web host to see if this is possible.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top