ValidationSummaryDisplayMode 列舉
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
指定由 ValidationSummary 控制項所使用的驗證摘要顯示模式。
public enum class ValidationSummaryDisplayMode
public enum ValidationSummaryDisplayMode
type ValidationSummaryDisplayMode =
Public Enum ValidationSummaryDisplayMode
- 繼承
欄位
BulletList | 1 | 顯示在項目符號清單中的驗證摘要。 |
List | 0 | 顯示在清單中的驗證摘要。 |
SingleParagraph | 2 | 顯示在單一段落中的驗證摘要。 |
範例
下列範例示範如何指定控件的 ValidationSummary 顯示模式。
重要
這個範例有一個可接受使用者輸入的文字方塊,這可能會造成安全性威脅。 根據預設,ASP.NET Web 網頁會驗證使用者輸入未包含指令碼或 HTML 項目。 如需詳細資訊,請參閱 Script Exploits Overview (指令碼攻擊概觀)。
<%@ 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 。