How to: Read Values from Session State
This example accesses the Item property to retrieve the values in session state.
This example requires:
-
A Web Forms page or class that has access to the current request context using the Current property in an ASP.NET application that has session state enabled.
No exception is thrown if you attempt to get a value out of session state that does not exist. To be sure that the value you want is in session state, check first for the existence of the object with a test such as the following:
If you attempt to use a nonexistent session state entry in some other way (for example, to examine its type), a NullReferenceException exception is thrown.
Session values are of type Object. In Visual Basic, if you set Option Strict On, you must cast from type Object to the appropriate type when getting values out of session state, as shown in the example. In C#, you should always cast to the appropriate type when reading session values.
bool b = (bool) (Session["IsValid"] ?? false); // false is default value
- 4/27/2011
- Tomáš Skála
It is true of any nullable object. Strings are nullable, bool, int, double are not (there is an alternative).
This is the quick test:
bool b = null; // Compiler error: Cannot convert null to 'bool' because it is a non-nullable value type
Alternative for non-nullable objects:
Nullable<bool> b = (Nullable<bool>)Session["loggedin"];
Then you can check for true, false, or null.
- 2/12/2011
- LarrySmith
- 2/12/2011
- LarrySmith
- 11/22/2010
- Bontoc