共用方式為


成員資格的 providers 項目 (ASP.NET 設定結構描述)

為 ASP.NET 成員資格定義成員資格提供者的集合。

這個項目是 .NET Framework 2.0 版中新增的項目。

<providers>
    <add.../>
    <remove.../>
    <clear/>
</providers>

屬性和項目

下列章節會說明屬性、子項目和父項目。

屬性

無。

子項目

項目

描述

add

將成員資格提供者的執行個體加入至成員資格提供者集合。

clear

從成員資格提供者集合移除所有的成員資格提供者執行個體。

remove

從成員資格提供者集合中移除成員資格提供者執行個體 (Instance)。

父項目

項目

描述

configuration

指定 Common Language Runtime 和 .NET Framework 應用程式所使用之每個組態檔中需要的根項目 (Root Element)。

system.web

指定 ASP.NET 組態區段的根項目。

membership

設定 ASP.NET 成員資格的應用程式。

備註

如需存取和修改應用程式程式碼中 membership 項目組態值的詳細資訊,請參閱 MembershipSection

預設組態

下列預設 providers 項目是在 .NET Framework 2.0 版中的 Machine.config 檔案中設定。

      <providers>
        <add name="AspNetSqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" connectionStringName="LocalSqlServer" enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="true" applicationName="/" requiresUniqueEmail="false" passwordFormat="Hashed" maxInvalidPasswordAttempts="5" minRequiredPasswordLength="7" minRequiredNonalphanumericCharacters="1" passwordAttemptWindow="10" passwordStrengthRegularExpression="" />
      <providers> 

藉由設定passwordCompatMode屬性設定為Framework40,在加入雜湊及加密的成員資格選項。NET 4.0 可以使用。 不過,如果passwordCompatMode屬性設定為Framework20,然後只的雜湊及加密成員資格選項。NET 2.0 中。NET 3.5 和。NET 3.5 SP1 可以使用。 預設屬性值是Framework20。 如需詳細資訊,請參閱 MembershipPasswordCompatibilityMode

範例

下列程式碼範例將顯示如何將 ASP.NET 應用程式設定為使用 SqlMembershipProvider 提供者來儲存和擷取使用者帳戶資訊。

<configuration>
    <connectionStrings>
        <add name="SqlServices" 
             connectionString="Data Source=MySqlServer;Integrated Security=SSPI;Initial Catalog=aspnetdb;" />
    </connectionStrings>
    <system.web>
        <membership 
             defaultProvider="SqlProvider"
             userIsOnlineTimeWindow="20">
             <providers>
                <remove name="AspNetSqlProvider" />
                <add name="SqlProvider"
                    type="System.Web.Security.SqlMembershipProvider"
                    connectionStringName="SqlServices"
                    enablePasswordRetrieval="false"
                    enablePasswordReset="true"
                    requiresQuestionAndAnswer="true"
                    passwordFormat="Hashed"
                    applicationName="/" />
            </providers>
        </membership>
    </system.web>
</configuration>

項目資訊

組態區段處理常式

System.Web.Configuration.MembershipSection

組態成員

MembershipSection.Providers

可設定的位置

Machine.config

根層次的 Web.config

應用程式層級的 Web.config

需求

Microsoft Internet Information Services (IIS) 5.0、5.1 或 6.0 版

.NET Framework 2.0 版

Microsoft Visual Studio 2005

請參閱

工作

How to: Lock ASP.NET Configuration Settings

參考

membership 項目 (ASP.NET 設定結構描述)

system.web 項目 (ASP.NET 設定結構描述)

<configuration> 項目

成員資格提供者的 add 項目 (ASP.NET 設定結構描述)

成員資格提供者的 remove 項目 (ASP.NET 設定結構描述)

成員資格提供者的 clear 項目 (ASP.NET 設定結構描述)

System.Configuration

System.Web.Configuration

概念

ASP.NET Configuration Overview

ASP.NET Server Controls and Browser Capabilities

Securing Configuration

Configuration Inheritance

其他資源

Managing Users Using ASP.NET Membership

ASP.NET Configuration Files

ASP.NET 組態設定

一般組態設定 (ASP.NET)

ASP.NET Configuration API