asp.net.ph

SessionPageStateSection Class

System.Web.Configuration Namespace


.NET Framework version 2.0

Provides programmatic access to the sessionPageState configuration file section. This class cannot be inherited.

SessionPageStateSection Class Members

Collapse   Constructors

Visibility Constructor Parameters
public SessionPageStateSection ( )

Collapse   Fields

Visibility Name Type
public static const DefaultHistorySize Int32

Collapse   Properties

Visibility Name Value Type Accessibility
public HistorySize Int32 [ Get , Set ]

Remarks

The SessionPageStateSection refers to the sessionPageState section of a 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.

Example

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.
Configuration configuration = WebConfigurationManager.OpenWebConfiguration ( "/aspnetTest" );

// Get the <sessionPageState> section.
SessionPageStateSection sessionPageState = ( SessionPageStateSection ) configuration.GetSection 
   ( "system.web/sessionPageState" );
  C# VB

See Also

ASP.NET Configuration   <sessionPageState> Section Skip Navigation Links




Home
Suggested Reading


Previous page Back to top Next page

© 2000-2010 Rey Nuñez All rights reserved.

If you have any question, comment or suggestion
about this site, please send us a note

You can help support asp.net.ph