Search code examples
asp-classicvbscript

How do I traverse a collection in classic ASP?


I want to be able to do:

For Each thing In things
End For

CLASSIC ASP - NOT .NET!


Solution

  • 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.