Partager via


DataListDesigner.GetErrorDesignTimeHtml(Exception) Méthode

Définition

Obtient le code HTML à afficher au moment du design pour l'exception spécifiée lorsqu'une erreur a été détectée lors du rendu du contrôle.

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

Paramètres

e
Exception

Exception survenue.

Retours

Code HTML affiché au moment du design pour l'exception spécifiée.

Exemples

L’exemple de code suivant montre comment remplacer la GetErrorDesignTimeHtml méthode pour modifier l’apparence du DataList contrôle sur l’aire de conception lorsqu’une exception se produit.

Cet exemple de code fait partie d’un exemple plus grand fourni pour la DataListDesigner classe .

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

S’applique à

Voir aussi