Page.ErrorPage Vlastnost

Definice

Získá nebo nastaví chybovou stránku, na kterou je přesměrován žádající prohlížeč v případě neošetřené výjimky stránky.

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

Hodnota vlastnosti

Chybová stránka, na kterou je prohlížeč přesměrován.

Atributy

Příklady

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

Platí pro

Viz také