| |||||||||||||||||||
<membership> SectionASP.NET Syntax ASP.NET Configuration Sections .NET Framework version 2.0 Configures parameters for managing and authenticating user accounts by using ASP.NET membership. <membership defaultProvider = "provider name" userIsOnlineTimeWindow = "number of minutes" hashAlgorithmType = "SHA1"> <providers>...</providers> </membership> Attributes and ElementsThe following sections describe attributes, child elements, and parent elements. Attributes
Child Elements
Parent Elements
RemarksFor information about accessing and modifying configuration values for the membership element in application code, see MembershipSection. Default ConfigurationThe following default membership element is configured in the Machine.config file in the .NET Framework version 2.0. <membership>
<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>
</membership>
ExampleThe following code example shows how to configure an ASP.NET application to use the SqlMembershipProvider provider to store and retrieve user account information. <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>
See AlsoASP.NET Configuration MembershipSection Class ASP.NET Membership |
| ||||||||||||||||||
Check out related books at Amazon
© 2000-2008 Rey Nuñez All rights reserved.
If you have any question, comment or suggestion
about this site, please send us a note
You can help support aspxtreme