Membership.MinRequiredPasswordLength 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得密碼所需的最小長度。
public:
static property int MinRequiredPasswordLength { int get(); };
public static int MinRequiredPasswordLength { get; }
static member MinRequiredPasswordLength : int
Public Shared ReadOnly Property MinRequiredPasswordLength As Integer
屬性值
密碼所需的最小長度。
範例
下列程式代碼範例顯示應用程式 Web.config 檔案區段中 的成員資格 組態專案 system.web
。 它會指定應用程式使用 類別的 SqlMembershipProvider 實例來提供成員資格服務,並將 屬性設定 minRequiredPasswordLength
為七個字元。
<membership defaultProvider="SqlProvider"
userIsOnlineTimeWindow = "20>
<providers>
<add
name="SqlProvider"
type="System.Web.Security.SqlMembershipProvider"
connectionStringName="SqlServices"
requiresQuestionAndAnswer="true"
minRequiredPasswordLength="7"
/>
</providers>
</membership>
備註
屬性 MinRequiredPasswordLength 會取得必須輸入的字元數下限,才能為 屬性中指定的 Provider 成員資格提供者建立有效的密碼。
MinRequiredPasswordLength屬性值是使用minRequiredPasswordLength
成員資格組態項目的 屬性,在應用程式組態中設定。