SessionPageStateSection Class
.NET Framework 3.0
Configures the sessionPageState section. This class cannot be inherited.
Namespace: System.Web.Configuration
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
The SessionPageStateSection refers to the sessionPageState section of the configuration file.
Note: |
|---|
| The SessionPageStateSection can read and write information from and to the related section of the configuration file according to the section property AllowDefinition whose value is Everywhere. |
The following code example shows how to obtain the SessionPageStateSection object from the configuration file associated with an existing Web application.
// Get the Web application configuration. System.Configuration.Configuration configuration = WebConfigurationManager.OpenWebConfiguration( "/aspnetTest"); // Get the <sessionPageState> section. SessionPageStateSection sessionPageState = (SessionPageStateSection)configuration.GetSection( "system.web/sessionPageState");
System.Object
System.Configuration.ConfigurationElement
System.Configuration.ConfigurationSection
System.Web.Configuration.SessionPageStateSection
System.Configuration.ConfigurationElement
System.Configuration.ConfigurationSection
System.Web.Configuration.SessionPageStateSection
Community Additions
ADD
Show:
Note: