Login.MembershipProvider Property

Definition

Gets or sets the name of the membership data provider used by the control.

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 membership data provider used by the control. The default is Empty.

Attributes

Remarks

The MembershipProvider property contains the name of the data provider that provides the authentication information for the Login control. Valid membership provider names are defined in the <membership> element in your application's Machine.config or Web.config file.

If you do not set the MembershipProvider property, it will always return Empty.

For more information, see the Membership class.

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