MembershipProvider.ApplicationName Property
Assembly: System.Web (in system.web.dll)
'Declaration Public MustOverride Property ApplicationName As String 'Usage Dim instance As MembershipProvider Dim value As String value = instance.ApplicationName instance.ApplicationName = value
/** @property */ public abstract String get_ApplicationName () /** @property */ public abstract void set_ApplicationName (String value)
public abstract function get ApplicationName () : String public abstract function set ApplicationName (value : String)
Not applicable.
Property Value
The name of the application using the custom membership provider.The ApplicationName property value is stored in the data source with related user information to associate a user with a particular application. This property is read/write and defaults to the ApplicationPath property value if not specified explicitly.
Because membership providers store user information uniquely for each application, multiple ASP.NET applications can use the same data source without running into a conflict if duplicate user names are created. Alternatively, multiple ASP.NET applications can use the same user data source by specifying the same ApplicationName.
In your membership provider implementation, you will need to ensure that your data schema includes the ApplicationName and that data source queries and updates also include the ApplicationName.
For an example of a MembershipProvider implementation, see Implementing a Profile Provider.