Page.ErrorPage 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定發出要求的瀏覽器被重新導向的錯誤網頁 (當未處理的網頁例外狀況發生時)。
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
屬性值
重新導向瀏覽器所至的錯誤網頁。
- 屬性
範例
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