ChangePassword.MembershipProvider Property
Definition
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 or sets the membership provider that is used to manage member information.
public:
virtual property System::String ^ MembershipProvider { System::String ^ get(); void set(System::String ^ value); };
[System.Web.UI.Themeable(false)]
public virtual string MembershipProvider { get; set; }
[<System.Web.UI.Themeable(false)>]
member this.MembershipProvider : string with get, set
Public Overridable Property MembershipProvider As String
Property Value
The name of the MembershipProvider for the ChangePassword control. The default is the membership provider for the application.
- Attributes
Remarks
The MembershipProvider property gets or sets the membership provider that is used to look up member information. If the MembershipProvider property is null
or empty, the default membership provider, AspNetSqlMembershipProvider
, is used. For more information about the membership providers available to ASP.NET applications, see Membership Providers.
The new password must meet the minimum requirements set by the membership provider in the MinRequiredPasswordLength, MinRequiredNonAlphanumericCharacters, and PasswordStrengthRegularExpression properties. If the password does not meet these requirements, the ChangePasswordError event is raised.
This property cannot be set by themes or style sheet themes. For more information, see ThemeableAttribute and ASP.NET Themes and Skins.
Applies to
See also
- MembershipProvider
- ASP.NET Login Controls Overview
- Customizing Appearance and Behavior of the ASP.NET Login Controls
- ASP.NET Web Server Controls Templates
- How to: Display Different Information to Anonymous and Logged In Users
- Web Site Administration Tool Security Tab
- Web Site Administration Tool Provider Tab
- Securing Login Controls
- Basic Security Practices for Web Applications
- Securing Membership