DataListDesigner.GetErrorDesignTimeHtml(Exception) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
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
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