CreateUserWizard.PasswordRegularExpression 属性

定义

获取或设置用于验证提供的密码的正则表达式。

public:
 virtual property System::String ^ PasswordRegularExpression { System::String ^ get(); void set(System::String ^ value); };
public virtual string PasswordRegularExpression { get; set; }
member this.PasswordRegularExpression : string with get, set
Public Overridable Property PasswordRegularExpression As String

属性值

一个字符串,该字符串包含用于验证提供的密码的正则表达式。 默认值为空字符串 ("")。

示例

下面的代码示例使用 PasswordRegularExpression 属性定义检查密码以确保密码的正则表达式:

  • 长度超过 7 个字符。

  • 至少包含一位数字。

  • 至少包含一个特殊 (非字母数字) 字符。

如果用户输入的密码不符合这些条件,则会向用户显示 属性中包含的 PasswordRegularExpressionErrorMessage 文本。

<%@ page language="C#"%>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">

</script>

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>CreateUserWizard.PasswordRegularExpression sample</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
      <asp:createuserwizard id="Createuserwizard1" runat="server" 
        passwordregularexpression='@\"(?:.{7,})(?=(.*\d){1,})(?=(.*\W){1,})'
        passwordregularexpressionerrormessage="Your password must be 7 characters long, and contain at least one number and one special character.">
      </asp:createuserwizard>
    </div>
    </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">
<script runat="server">

</script>

<html xmlns="http://www.w3.org/1999/xhtml" >
<head id="Head1" runat="server">
    <title>CreateUserWizard.PasswordRegularExpression sample</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
      <asp:createuserwizard id="Createuserwizard1" runat="server" 
        passwordregularexpression='@\"(?:.{7,})(?=(.*\d){1,})(?=(.*\W){1,})'
        passwordregularexpressionerrormessage="Your password must be 7 characters long, and contain at least one number and one special character.">
      </asp:createuserwizard>
    </div>
    </form>
</body>
</html>

注解

PasswordRegularExpression使用 属性定义用于验证网站上的用户的密码要求。 一种常见用途是确保用户在密码中包含字母以外的符号,使攻击者更难猜出密码。 除了属性中指定的成员资格提供程序对密码施加的任何限制外, MembershipProvider 还使用正则表达式。 如果成员资格提供程序出于任何原因拒绝密码,则会显示 属性中包含的 InvalidPasswordErrorMessage 文本。

如果输入的密码未传递正则表达式,则会向用户显示 属性中包含的 PasswordRegularExpressionErrorMessage 错误消息。

适用于

另请参阅