Page.ErrorPage プロパティ

定義

処理されていないページ例外が発生した場合に、要求側のブラウザーがリダイレクトされる対象のエラー ページを取得または設定します。

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

プロパティ値

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

適用対象

こちらもご覧ください