Membership.MinRequiredPasswordLength Property
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 minimum length required for a password.
public:
static property int MinRequiredPasswordLength { int get(); };
public static int MinRequiredPasswordLength { get; }
static member MinRequiredPasswordLength : int
Public Shared ReadOnly Property MinRequiredPasswordLength As Integer
The minimum length required for a password.
The following code example shows the membership configuration element in the system.web
section of the application's Web.config file. It specifies that the application use an instance of the SqlMembershipProvider class to provide membership services, and sets the minRequiredPasswordLength
attribute to seven characters.
<membership defaultProvider="SqlProvider"
userIsOnlineTimeWindow = "20>
<providers>
<add
name="SqlProvider"
type="System.Web.Security.SqlMembershipProvider"
connectionStringName="SqlServices"
requiresQuestionAndAnswer="true"
minRequiredPasswordLength="7"
/>
</providers>
</membership>
The MinRequiredPasswordLength property gets the minimum number of characters that must be entered to create a valid password for the membership provider specified in the Provider property.
The MinRequiredPasswordLength property value is set in the application configuration using the minRequiredPasswordLength
attribute of the membership configuration element.
Προϊόν | Εκδόσεις |
---|---|
.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 σχόλια
.NET είναι ένα έργο ανοιχτού κώδικα. Επιλέξτε μια σύνδεση για να παρέχετε σχόλια: