This documentation is archived and is not being maintained.
ProfileManager::Enabled Property
Visual Studio 2010
Gets a value indicating whether the user profile is enabled for the application.
Assembly: System.Web (in System.Web.dll)
Property Value
Type: System::Booleantrue if the user profile is enabled; otherwise, false. The default is false.
The user profile is enabled for an application using the enabled attribute of the profile configuration element.
The following code example shows the profile element in the system.web section of the Web.config file for an ASP.NET application where the user profile has been enabled.
<profile enabled="true" defaultProvider="SqlProvider">
<providers>
<add name="SqlProvider"
type="System.Web.Profile.SqlProfileProvider"
connectionStringName="SqlServices"
applicationName="MyApplication" />
</providers>
</profile>
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: