本文概述
该验证器用于显示Web表单中所有验证错误的列表。
它使我们能够在单个位置汇总错误消息。
我们可以设置DisplayMode属性以将错误消息显示为列表,项目符号列表或单个段落。
验证摘要属性
此控件具有以下属性。
属性 | 描述 |
---|---|
AccessKey | 用于设置控件的键盘快捷键。 |
BackColor | 用于设置控件的背景色。 |
BorderColor | 用于设置控件的边框颜色。 |
Font | 用于设置控制文本的字体。 |
ForeColor | 用于设置控件文本的颜色。 |
Text | 它用于设置要为控件显示的文本。 |
ToolTip | 当鼠标悬停在控件上时, 它将显示文本。 |
Visible | 在窗体上设置控件的可见性。 |
Height | 用于设置控件的高度。 |
Width | 用于设置控件的宽度。 |
ShowMessageBox | 它会在上级浏览器中显示有关错误的消息框。 |
ShowSummary | 它用于在表单页面上显示摘要文本。 |
ShowValidationErrors | 它用于设置是否显示验证摘要。 |
例
以下示例说明了如何在应用程序中使用ValidationSummery控件。
// ValidationSummeryDemo.aspx
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="ValidationSummeryDemo.aspx.cs"
Inherits="asp.netexample.ValidationSummeryDemo" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
</div>
<table class="auto-style1">
<tr>
<td class="auto-style2">User Name</td>
<td>
<asp:TextBox ID="username" runat="server"></asp:TextBox>
<asp:RequiredFieldValidator ID="user" runat="server" ControlToValidate="username"
ErrorMessage="Please enter a user name" ForeColor="Red">*</asp:RequiredFieldValidator>
</td>
</tr>
<tr>
<td class="auto-style2">Password</td>
<td>
<asp:TextBox ID="password" runat="server"></asp:TextBox>
<asp:RequiredFieldValidator ID="pass" runat="server" ControlToValidate="password"
ErrorMessage="Please enter a password" ForeColor="Red">*</asp:RequiredFieldValidator>
</td>
</tr>
<tr>
<td class="auto-style2">
<br/>
<asp:Button ID="Button1" runat="server"Text="login"/>
</td>
<td>
<asp:ValidationSummary ID="ValidationSummary1" runat="server" ForeColor="Red"/>
<br/>
</td>
</tr>
</table>
</form>
</body>
</html>
输出:
在浏览器中查看时,它将产生以下输出。
当没有凭据的用户登录时,它将引发错误摘要。
评论前必须登录!
注册