I want to be able to do:
For Each thing In things
End For
CLASSIC ASP - NOT .NET!
|
|
I want to be able to do:
CLASSIC ASP - NOT .NET!
|
|||
|
|
|
|
Whatever your [things] are need to be written outside of VBScript. In VB6, you can write a Custom Collection class, then you'll need to compile to an ActiveX DLL and register it on your webserver to access it. |
||
|
|
|
|
Something like this?
See www.w3schools.com. If you want to associate keys and values use a dictionary object instead:
|
|||
|
|
|
|
test -- can't seem to post answer |
||
|
|
|
|
The closest you are going to get is using a Dictionary (as mentioned by Pacifika)
But I loop through my dictionaries like a collection
You can loop through the entire dictionary this way writing out the values which would look like this:
You can also do this
Which would produce
|
||
|
|
|
|
As Brett said, its better to use a vb component to create collections. Dictionary objects are not very commonly used in ASP unless for specific need based applications. |
||
|
|
|
|
One approach I've used before is to use a property of the collection that returns an array, which can be iterated over.
Iterate like:
|
||
|
|