ChangePassword.MembershipProvider Property
Assembly: System.Web (in system.web.dll)
'Declaration <ThemeableAttribute(False)> _ Public Overridable Property MembershipProvider As String 'Usage Dim instance As ChangePassword Dim value As String value = instance.MembershipProvider instance.MembershipProvider = value
/** @property */ public String get_MembershipProvider () /** @property */ public void set_MembershipProvider (String value)
public function get MembershipProvider () : String public function set MembershipProvider (value : String)
Not applicable.
Property Value
The name of the MembershipProvider for the ChangePassword control. The default is the membership provider for the application.The MembershipProvider property gets or sets the membership provider that is used to look up member information. If the MembershipProvider property is a null reference (Nothing in Visual Basic) 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 Introduction to ASP.NET Themes.
Reference
ChangePassword ClassChangePassword Members
System.Web.UI.WebControls Namespace
MembershipProvider
Other Resources
ASP.NET Login Controls OverviewCustomizing the Appearance of ASP.NET Login Controls
Web Server Controls Templates (Visual Studio)
How to: Display 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