ASP   «Prev  

Looping through the Contents Collection

This next code segment will print out all the values of the collection Contents.

.
.
Dim vItem 'Initialize a variant variable
For Each vItem In Application.Contents
Response.Write vItem& " : "
& Application.Contents(vItem) & "<br>"
Next  'vItem
.
.


OrderNum : 1105
CustID : 503
OrderValue : 87.32