ValidationSummary.DisplayMode Propriété
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 ou définit le mode d'affichage du résumé des validations.
public:
property System::Web::UI::WebControls::ValidationSummaryDisplayMode DisplayMode { System::Web::UI::WebControls::ValidationSummaryDisplayMode get(); void set(System::Web::UI::WebControls::ValidationSummaryDisplayMode value); };
[System.ComponentModel.Bindable(true)]
public System.Web.UI.WebControls.ValidationSummaryDisplayMode DisplayMode { get; set; }
public System.Web.UI.WebControls.ValidationSummaryDisplayMode DisplayMode { get; set; }
[<System.ComponentModel.Bindable(true)>]
member this.DisplayMode : System.Web.UI.WebControls.ValidationSummaryDisplayMode with get, set
member this.DisplayMode : System.Web.UI.WebControls.ValidationSummaryDisplayMode with get, set
Public Property DisplayMode As ValidationSummaryDisplayMode
Valeur de propriété
Une des valeurs de l'objet ValidationSummaryDisplayMode. La valeur par défaut est BulletList
.
- Attributs
Exceptions
Le mode d'affichage ne fait pas partie des valeurs ValidationSummaryDisplayMode.
Exemples
L’exemple de code suivant montre comment définir la DisplayMode propriété pour afficher une liste à puces.
Important
Cet exemple comprend une zone de texte qui accepte une entrée d'utilisateur, ce qui constitue une menace potentielle pour la sécurité. Par défaut, les pages web ASP.NET vérifient que l’entrée d’utilisateur n’inclut pas de script ou d’éléments HTML. Pour plus d’informations, consultez Vue d’ensemble des attaques de script.
<%@ Page Language="C#"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>ASP.NET Example</title>
</head>
<body>
<form id="form1" runat="server">
Name:<br/>
<asp:textbox id="NameTextBox"
runat="server"/>
<asp:requiredfieldvalidator id="NameTextBoxRequiredValidator"
controltovalidate="NameTextBox"
errormessage="Name field."
text="Please enter your name"
runat="server"/>
<br/>
City:<br/>
<asp:textbox id="CityTextBox"
runat="server"/>
<asp:requiredfieldvalidator id="CityTextBoxRequiredValidator"
controltovalidate="CityTextBox"
errormessage="City field."
text="Please enter the city."
runat="server"/>
<br/>
<asp:Button id="SubmitButton"
text="Submit"
runat="server"/>
<hr/>
<asp:ValidationSummary
id="valSum"
displaymode="BulletList"
headertext="You must enter a value in the following fields:"
runat="server"/>
</form>
</body>
</html>
<%@ Page Language="VB"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>ASP.NET Example</title>
</head>
<body>
<form id="form1" runat="server">
Name:<br/>
<asp:textbox id="NameTextBox"
runat="server"/>
<asp:requiredfieldvalidator id="NameTextBoxRequiredValidator"
controltovalidate="NameTextBox"
errormessage="Name field."
text="Please enter your name"
runat="server"/>
<br/>
City:<br/>
<asp:textbox id="CityTextBox"
runat="server"/>
<asp:requiredfieldvalidator id="CityTextBoxRequiredValidator"
controltovalidate="CityTextBox"
errormessage="City field."
text="Please enter the city."
runat="server"/>
<br/>
<asp:Button id="SubmitButton"
text="Submit"
runat="server"/>
<hr/>
<asp:ValidationSummary
id="valSum"
displaymode="BulletList"
headertext="You must enter a value in the following fields:"
runat="server"/>
</form>
</body>
</html>
Remarques
Utilisez cette propriété pour spécifier le format d’affichage d’un ValidationSummary contrôle. Le résumé peut être affiché sous la forme d’une liste, d’une liste à puces ou d’un seul paragraphe.