ValidationSummaryDisplayMode 枚举
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
指定 ValidationSummary 控件使用的验证摘要显示模式。
public enum class ValidationSummaryDisplayMode
public enum ValidationSummaryDisplayMode
type ValidationSummaryDisplayMode =
Public Enum ValidationSummaryDisplayMode
- 继承
字段
BulletList | 1 | 显示在项目符号列表中的验证摘要。 |
List | 0 | 显示在列表中的验证摘要。 |
SingleParagraph | 2 | 显示在单个段落内的验证摘要。 |
示例
下面的示例演示如何指定 ValidationSummary 控件的显示模式。
重要
此示例具有一个接受用户输入的文本框,这是一个潜在的安全威胁。 默认情况下,ASP.NET 网页验证用户输入是否不包含脚本或 HTML 元素。 有关详细信息,请参阅脚本侵入概述。
<%@ 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>
注解
ValidationSummaryDisplayMode枚举表示控件的不同显示格式ValidationSummary。