Page.ErrorPage Property

Definition

Gets or sets the error page to which the requesting browser is redirected in the event of an unhandled page exception.

public:
 property System::String ^ ErrorPage { System::String ^ get(); void set(System::String ^ value); };
[System.ComponentModel.Browsable(false)]
public string ErrorPage { get; set; }
[<System.ComponentModel.Browsable(false)>]
member this.ErrorPage : string with get, set
Public Property ErrorPage As String

Property Value

The error page to which the browser is redirected.

Attributes

Examples

void Page_Load(Object sender, EventArgs e)
{
   // Note: This property can also be set in <%@ Page ...> tag.
   if(!IsPostBack)
      this.ErrorPage = "Error_Page.aspx";
}
Sub Page_Load(Sender As Object, e As EventArgs)

   ' Note: This property can also be set in <%@ Page ...> tag.
   If (Not IsPostBack) Then
      Me.ErrorPage = "Error_Page.aspx"
 End If
End Sub

Applies to

See also