Ask Learn
Preview
Please sign in to use this experience.
Sign inThis browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the regular expression used to evaluate a password.
public:
virtual property System::String ^ PasswordStrengthRegularExpression { System::String ^ get(); };
public override string PasswordStrengthRegularExpression { get; }
member this.PasswordStrengthRegularExpression : string
Public Overrides ReadOnly Property PasswordStrengthRegularExpression As String
A regular expression used to evaluate a password.
The PasswordStrengthRegularExpression property is accessed before the ActiveDirectoryMembershipProvider instance is initialized.
The following example shows the membership Element (ASP.NET Settings Schema) configuration element in the system.web
section of the application's Web.config file. It specifies that the application use an instance of the ActiveDirectoryMembershipProvider class to provide membership services and sets the passwordStrengthRegularExpression
attribute to a regular expression that validates that the password meets the following criteria:
Is greater than seven characters.
Contains at least one digit.
Contains at least one special (non-alphanumeric) character.
If the password does not meet these criteria, the password is not accepted by the membership provider.
<configuration>
<connectionStrings>
<add name="ADService" connectionString="LDAP://ldapServer/" />
</connectionStrings>
<system.web>
<membership defaultProvider="AspNetActiveDirectoryMembershipProvider">
<providers>
<add name="AspNetActiveDirectoryMembershipProvider"
type="System.Web.Security.ActiveDirectoryMembershipProvider,
System.Web, Version=2.0.3600, Culture=neutral,
PublicKeyToken=b03f5f7f11d50a3a"
passwordStrengthRegularExpression=
"@\"(?=.{6,})(?=(.*\d){1,})(?=(.*\W){1,})" />
</providers>
</membership>
</system.web>
</configuration>
The PasswordStrengthRegularExpression property gets the regular expression used to evaluate password complexity.
The PasswordStrengthRegularExpression property is not used to validate auto-generated passwords in the ResetPassword method.
The PasswordStrengthRegularExpression property is set in the application configuration using the passwordStrengthRegularExpression
attribute of the membership Element (ASP.NET Settings Schema) configuration element.
Product | Versions |
---|---|
.NET Framework | 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1 |
.NET feedback
.NET is an open source project. Select a link to provide feedback:
Please sign in to use this experience.
Sign in