RoleProvider.ApplicationName Property
.NET Framework 2.0
Gets or sets the name of the application to store and retrieve role information for.
Namespace: System.Web.Security
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
/** @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 to store and retrieve role information for.The ApplicationName is used by the Roles class to associate users and roles with different applications. This enables multiple applications to use the same database to store user and role information without running into conflicts between duplicate user names or role names. Multiple ASP.NET applications can use the same database by specifying the same value in the ApplicationName property. The ApplicationName property can be set programmatically, or it can be set declaratively in the configuration file for the Web application using the applicationName attribute.
If no ApplicationName property is specified, we recommend that the ApplicationVirtualPath property value be used.
Community Additions
ADD
Show: