Removes all membership provider instances from the membership provider collection.
This element is new in the .NET Framework version 2.0.
<configuration> Element system.web Element (ASP.NET Settings Schema) membership Element (ASP.NET Settings Schema) providers Element for membership (ASP.NET Settings Schema) clear Element for providers for membership (ASP.NET Settings Schema)
The following sections describe attributes, child elements, and parent elements.
Attributes
None.
Child Elements
None.
Parent Elements
Element | Description |
|---|
configuration | Specifies the required root element in every configuration file that is used by the common language runtime and the .NET Framework applications. |
system.web | Specifies the root element for the ASP.NET configuration section. |
membership | Configures an application for ASP.NET membership. |
providers | Defines a collection of membership providers for ASP.NET membership. |
The following code example shows how to configure an ASP.NET application to use the SqlMembershipProvider provider to store and retrieve membership information. The clear element clears the MembershipProviderCollection collection before adding the 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>
<clear />
<add name="SqlProvider"
type="System.Web.Security.SqlMembershipProvider"
connectionStringName="SqlServices"
enablePasswordRetrieval="false"
enablePasswordReset="true"
requiresQuestionAndAnswer="true"
passwordFormat="Hashed"
applicationName="/" />
</providers>
</membership>
</system.web>
</configuration>
Tasks
Concepts
Reference
Other Resources