Udostępnij za pośrednictwem


DataListDesigner.GetErrorDesignTimeHtml(Exception) Metoda

Definicja

Pobiera kod HTML do wyświetlenia w czasie projektowania dla określonego wyjątku, gdy wystąpił błąd podczas renderowania kontrolki.

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

Parametry

e
Exception

Wystąpił wyjątek.

Zwraca

Kod HTML wyświetlany w czasie projektowania dla określonego wyjątku.

Przykłady

Poniższy przykład kodu pokazuje, jak zastąpić GetErrorDesignTimeHtml metodę w celu zmodyfikowania wyglądu DataList kontrolki na powierzchni projektowej, gdy wystąpi wyjątek.

Ten przykład kodu jest częścią większego przykładu podanego DataListDesigner dla klasy.

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

Dotyczy

Zobacz też