DataListDesigner.GetErrorDesignTimeHtml(Exception) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得在呈現控制項發生錯誤時,指定的例外狀況在設計階段所要顯示的 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
參數
發生的例外狀況。
傳回
指定的例外狀況在設計階段所顯示的 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