Session StaticObjects Collection

The StaticObjects collection contains all of the objects created with the <OBJECT> tag within the scope of the session object. The collection can be used to determine a 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. This is demonstrated in the following example.

<%
Dim objprop
For Each objprop in Session.StaticObjects
  Response.write(objproperty & " : " & Session.StaticObjects(objprop) & "<BR>")
Next 
%>