HttpContext::Session Property
Gets the HttpSessionState object for the current HTTP request.
Assembly: System.Web (in System.Web.dll)
Property Value
Type: System.Web.SessionState::HttpSessionStateThe HttpSessionState object for the current HTTP request.
The Session property provides programmatic access to the properties and methods of the HttpSessionState class. Because ASP.NET pages contain a default reference to the System.Web namespace (which contains the HttpContext class), you can reference the members of HttpContext on an .aspx page without using the fully qualified class reference to HttpContext. For example, you can use Session("SessionVariable1") to get or set the value of the session state variable SessionVariable1. However, if you want to use the members of HttpResponse from an ASP.NET code-behind module, you must include a reference to the System.Web namespace in the module and a fully qualified reference to both the currently active request/response context and the class in System.Web that you want to use. For example, in a code-behind page you must specify the fully qualified name HttpContext.Current.Session("SessionVariable1").
You cannot set or get a session-state value if session state is not enabled. To configure session-state settings for an application, set the mode attribute of the sessionState element in the Web.config file. When session state is enabled and you request a value from a session-state variable that does not exist, nullptr is returned.
| Topic | Location |
|---|---|
| How to: Read Values from Session State | Building ASP .NET Web Applications |
| How to: Sample Session-State Store Provider | Building ASP .NET Web Applications |
| How to: Display Safe Error Messages | Building ASP .NET Web Applications |
| How to: Save Values in Session State | Building ASP .NET Web Applications |
| How to: Read Values from Session State | Building ASP .NET Web Applications |
| How to: Sample Session-State Store Provider | Building ASP .NET Web Applications |
| How to: Display Safe Error Messages | Building ASP .NET Web Applications |
| How to: Save Values in Session State | Building ASP .NET Web Applications |
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.