ErrorHandling.SetPageError(Exception) Method
Handles the specified exception.
Namespace: DevExpress.ExpressApp.Web
Assembly: DevExpress.ExpressApp.Web.v24.1.dll
NuGet Package: DevExpress.ExpressApp.Web
Declaration
Parameters
Name | Type | Description |
---|---|---|
error | Exception | A System.Exception object that is the error that occurred. |
Remarks
This method performs the following:
- creates the ErrorInfo object corresponding to the specified exception;
- registers the ErrorInfo object for the current context (the registered object is used by the ErrorInfoControl);
- sends an alert to the application administrator, if possible (see ErrorHandling.CanSendAlertToAdmin);
- logs the exception information to the application log file (excluding tracing information).
An example of using this method is provided in the Error Handling in ASP.NET Web Forms Applications topic.
See Also