Page.ErrorPage Property
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.
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
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.