asp.net web表单正则表达式验证器

本文概述

  • 正则表达式属性
该验证器用于根据正则表达式定义的模式来验证输入控件的值。
它使我们能够检查和验证可预测的字符序列,例如:电子邮件地址,电话号码等。
ValidationExpression属性用于指定正则表达式,该表达式用于验证输入控件。
正则表达式属性
属性描述
AccessKey用于设置控件的键盘快捷键。
BackColor用于设置控件的背景色。
BorderColor用于设置控件的边框颜色。
Font用于设置控制文本的字体。
ForeColor用于设置控件文本的颜色。
Text它用于设置要为控件显示的文本。
ToolTip当鼠标悬停在控件上时, 它将显示文本。
Visible在窗体上设置控件的可见性。
Height用于设置控件的高度。
Width用于设置控件的宽度。
ErrorMessage 它用于设置验证失败时显示的错误消息。
ControlToValidate它需要控制ID来验证。
ValidationExpression它用于设置正则表达式以确定有效性。
例在下面的示例中,我们在此说明如何使用RegularExpressionValidator控件根据给定的模式验证用户输入。
// RegularExpressionDemo.aspx
< %@ Page Language="C#" AutoEventWireup="true" CodeBehind="RegularExpressionDemo.aspx.cs" Inherits="asp.netexample.RegularExpressionDemo" %> < !DOCTYPE html> < html xmlns="http://www.w3.org/1999/xhtml"> < head runat="server"> < title>< /title> < /head> < body> < form id="form1" runat="server"> < div> < table class="auto-style1"> < tr> < td class="auto-style2">Email ID< /td> < td> < asp:TextBox ID="username" runat="server">< /asp:TextBox> < asp:RegularExpressionValidator ID="RegularExpressionValidator1" runat="server"ControlToValidate="username" ErrorMessage="Please enter valid email" ForeColor="Red"ValidationExpression="\w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*"> < /asp:RegularExpressionValidator> < /td> < /tr> < tr> < td class="auto-style2">< /td> < td> < br/> < asp:Button ID="Button1" runat="server" Text="Save"/> < /td> < /tr> < /table> < /div> < /form> < /body> < /html>

【asp.net web表单正则表达式验证器】输出:
在浏览器中查看时,它将产生以下输出。
asp.net web表单正则表达式验证器

文章图片
它将验证我们在正则表达式中指定的电子邮件格式。如果验证失败,则会引发错误消息。
asp.net web表单正则表达式验证器

文章图片

    推荐阅读