共用方式為


DataListDesigner.GetErrorDesignTimeHtml(Exception) 方法

定義

取得在呈現控制項發生錯誤時,指定的例外狀況在設計階段所要顯示的 HTML。

protected:
 override System::String ^ GetErrorDesignTimeHtml(Exception ^ e);
protected override string GetErrorDesignTimeHtml (Exception e);
override this.GetErrorDesignTimeHtml : Exception -> string
Protected Overrides Function GetErrorDesignTimeHtml (e As Exception) As String

參數

e
Exception

發生的例外狀況。

傳回

指定的例外狀況在設計階段所顯示的 HTML。

範例

下列程式代碼範例示範如何覆寫 GetErrorDesignTimeHtml 方法,以在發生例外狀況時修改設計介面上的控件外觀 DataList

此程式代碼範例是提供給 類別之較大範例的 DataListDesigner 一部分。

protected override string
    GetErrorDesignTimeHtml(System.Exception exc)
{
    return CreatePlaceHolderDesignTimeHtml(
        "ASPNET.Examples: An error occurred while rendering the GridView.");
}
Protected Overrides Function _
    GetErrorDesignTimeHtml(ByVal exc As Exception) As String

    Return CreatePlaceHolderDesignTimeHtml( _
        "ASPNET.Examples: An error occurred while rendering the GridView.")

End Function

適用於

另請參閱