Session.StaticObjects Collection

The StaticObjects collection contains all of the objects created by using the <OBJECT> tag within the scope of the session object. The collection can be used to determine the value of a specific property for an object, or to iterate through the collection and retrieve all properties for all objects.

Syntax

Session.StaticObjects( Key )

Parameters

  • Key
    The property to retrieve.

Remarks

You can use an iterating control structure to loop through the keys of the StaticObjects collection, as shown in the following example:

<% 
  Dim objProp 
  For Each objProp in Session.StaticObjects 
    If IsObject(Session.StaticObjects(objProp)) Then 
      Response.write(objProp & " : Session object cannot be displayed."&_ 
      "<BR>") 
    Else 
    Response.write(objprop & " : " & Session.StaticObjects(objprop) &_ 
    "<BR>") 
    End if 
  Next  
%> 

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