Session Object (IIS)

You can use the Session object to store information needed for a particular user session. Variables stored in the Session object are not discarded when the user jumps between pages in the application; instead, these variables persist for the entire user session.

The Web server automatically creates a Session object when a Web page from the application is requested by a user who does not already have a session. The server destroys the Session object when the session expires or is abandoned.

One common use for the Session object is to store user preferences. For example, if a user indicates that they prefer not to view graphics, you could store that information in the Session object. For more information about using the Session object, see Managing Sessions in the Active Server Pages & Web Application Guide section.

Note

Session state is only maintained for browsers that support cookies.

Methods

The Session object defines the following methods.

Method

Description

Session.Abandon

This method destroys a Session object and releases its resources.

Session.Contents.Remove

This method deletes an item from the Contents collection.

Session.Contents.RemoveAll

This method deletes all items from the Contents collection.

Properties

The Session object defines the following properties.

Property

Description

Session.CodePage

Sets the code page for data in the intrinsic objects for an entire session. The code page specifies to the server how to encode characters for different languages.

Session.Contents Collection

Contains the items that you have added to the session by using script commands.

Session.LCID

Sets the LCID for data for an entire session. The LCID refers to how dates, times, and currency are formatted for a specific geographical locale.

Session.SessionID

Returns the session identification for this user.

Session.StaticObjects Colleciton

Contains the objects created by using the <OBJECT> tag and given session scope.

Session.Timeout

The time-out period for the session state for this application, in minutes.

Events

The Session object defines the following events.

Event

Description

Session_OnEnd Event

Occurs when a session is abandoned or times out.

Session_OnStart Event

Occurs when the server creates a new session.

Remarks

You can store values in the Session object. Information stored in the Session object is available throughout the session and has session scope. The following script demonstrates storage of two types of variables:

<%  
Session("username") = "Janine" 
Session("age") = 24 
%> 

However, if you store an object in the Session object and use VBScript as your primary scripting language, you must use the Set keyword, as illustrated in the following script.

<% Set Session("Obj1") = Server.CreateObject("MyComponent.class1") %> 

You can then use the methods and properties exposed by MyComponent.class1 on subsequent Web pages, by using the following:

<% Session("Obj1").MyMethod %>

Or by extracting a local copy of the object and using the following:

<%  
Set MyLocalObj1 = Session("Obj1")  
MyLocalObj1.MyObjMethod 
%> 

Another way to create objects with session scope is to use the <OBJECT> tags in the Global.asa file.

You cannot, however, store a built-in object in a Session object. For example, each of the following lines returns an error.

<% 
Set Session("var1") = Session 
Set Session("var2") = Request 
Set Session("var3") = Response 
Set Session("var4") = Server 
Set Session("var5") = Application 
%> 

Before you store an object in the Session object, you should know what threading model it uses. Only objects marked as both can be stored in the Session object without locking the session to a single thread.

If you store an array in a Session object, you should not attempt to alter the elements of the stored array directly. For example, the following script does not work:

<% Session("StoredArray")(3) = "new value" %>

The preceding script does not work because the Session object is implemented as a collection. The array element StoredArray(3) does not receive the new value. Instead, the value is indexed into the collection, overwriting any information stored at that location.

It is strongly recommended that if you store an array in the Session object, you retrieve a copy of the array before retrieving or changing any of the elements of the array. When you are finished using the array, you should store the array in the Session object again, so that any changes you made are saved, as demonstrated in the following example:

--- File1.asp --- 
<% 
'Creating and initializing the array 
Dim MyArray() 
Redim MyArray(5) 
MyArray(0) = "hello" 
MyArray(1) = "some other string" 

'Storing the array in the Session object. 
Session("StoredArray") = MyArray 

Response.Redirect("file2.asp") 
%> 

--- File2.asp --- 
<% 
'Retrieving the array from the Session Object 
'and modifying its second element. 
LocalArray = Session("StoredArray") 
LocalArray(1) = " there" 

'Printing out the string "hello there." 
Response.Write(LocalArray(0)&LocalArray(1)) 

'Re-storing the array in the Session object. 
'This overwrites the values in StoredArray with the new values. 
Session("StoredArray") = LocalArray 
%> 

Example Code

The following code assigns the string "MyName" to a session variable named name, assigns a value to a session variable named year, and assigns an instance of the some.Obj component to a variable named myObj:

<% 
Session("name") = "MyName"  
Session("year") = 96  
Set Session("myObj") = Server.CreateObject("someObj")  
%> 

Requirements

Client: Requires Windows XP Professional, Windows 2000 Professional, or Windows NT Workstation 4.0.

Server: Requires Windows Server 2003, Windows 2000 Server, or Windows NT Server 4.0.

Product: IIS

See Also