ChangePassword.MembershipProvider Property

Note: This property is new in the .NET Framework version 2.0.

Gets or sets the membership provider that is used to manage member information.

Namespace: System.Web.UI.WebControls
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)

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 ASP.NET Themes and Skins Overview.

Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.

.NET Framework

Supported in: 2.0

Community Additions

ADD
Show: