You can loop through the StaticObjects collection, to see the values of all objects stored in the Application object:

<%
dim i
For Each i in Application.StaticObjects
  Response.Write(i & "<br>")
Next
%>



Practice Excercise Practice now