ProfileManager.AutomaticSaveEnabled Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a value indicating whether the user profile will be automatically saved at the end of the execution of an ASP.NET page.
public:
static property bool AutomaticSaveEnabled { bool get(); };
public static bool AutomaticSaveEnabled { get; }
static member AutomaticSaveEnabled : bool
Public Shared ReadOnly Property AutomaticSaveEnabled As Boolean
Property Value
true
if the user profile will be automatically saved at the end of the execution of an ASP.NET page; otherwise, false
. The default is true
.
Exceptions
An attempt was made to get the AutomaticSaveEnabled property value without at least Medium permission.
Examples
The following configuration file excerpt shows the profile element in the system.web section of the Web.config file for an ASP.NET application. It specifies the application's default profile provider to a SqlProfileProvider instance and sets the automaticSaveEnabled
attribute to true
.
<profile enabled="true"
automaticSaveEnabled="true"
defaultProvider="SqlProvider">
<providers>
<add name="SqlProvider"
type="System.Web.Profile.SqlProfileProvider"
connectionStringName="SqlServices"
applicationName="MyApplication" />
</providers>
</profile>
Remarks
The AutomaticSaveEnabled property indicates whether automatic saving of the user profile is enabled for the application. If automatic saving is enabled, the ProfileModule object raises the ProfileAutoSaving event and calls the Save method during the EndRequest event at the end of the execution of an ASP.NET page.
The AutomaticSaveEnabled property is set using the automaticSaveEnabled
attribute of the profile element in the Web.config file for an ASP.NET application.