HttpApplication.Error Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Occurs when an unhandled exception is thrown.
public:
event EventHandler ^ Error;
public event EventHandler Error;
member this.Error : EventHandler
Public Custom Event Error As EventHandler
Event Type
Remarks
The exception that raises the Error event can be accessed by a call to the GetLastError method. If your application generates custom error output, suppress the default error message that is generated by ASP.NET by a call to the ClearError method.
Note
If your Web application contains XML Web services, you cannot use the Error event for global exception handling of those services. The HTTP handler for XML Web services consumes any exception that occurs in an XML Web service and converts it to a SOAP fault before the Error being called. To handle XML Web service exceptions, build a SOAP extension to process Web service exceptions in a custom global exception handler.
For more information about how to handle events, see Handling and Raising Events.