次の方法で共有


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

適用対象

こちらもご覧ください