CreateUserWizard.PasswordRegularExpressionErrorMessage Property
.NET Framework 2.0
Note: This property is new in the .NET Framework version 2.0.
Gets or sets the error message shown when the password entered does not conform to the site's password requirements.
Namespace: System.Web.UI.WebControls
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
'Declaration Public Overridable Property PasswordRegularExpressionErrorMessage As String 'Usage Dim instance As CreateUserWizard Dim value As String value = instance.PasswordRegularExpressionErrorMessage instance.PasswordRegularExpressionErrorMessage = value
/** @property */ public String get_PasswordRegularExpressionErrorMessage () /** @property */ public void set_PasswordRegularExpressionErrorMessage (String value)
public function get PasswordRegularExpressionErrorMessage () : String public function set PasswordRegularExpressionErrorMessage (value : String)
Property Value
The error message shown when the password entered does not pass the regular expression defined in the PasswordRegularExpression property. The default is "Please enter a different password." The default text for the control is localized based on the server's current locale.The following code example sets the PasswordRequiredErrorMessage property to explain to the user that the password entered does not meet the requirements of the regular expression contained in the PasswordRegularExpression property. To pass the regular expression, passwords must:
-
Be longer than six characters.
-
Contain at least one digit.
-
Contain at least one special (nonalphanumeric) character.
<%@ page language="VB"%> <script runat="server"> </script> <html> <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>
Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Community Additions
ADD
Show: