Sun
ONE Active Server Pages Product Home Page Developer Site Version
 

ContentsPreviousNextIndex



Remarks: ASP Session Object StaticObjects Collection

An iterating control structure can be used 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 
%>


ContentsPreviousNextIndex