This section describes the Collection class and methods to access member elements in VBScript language.
Collection: A class representing a collection of ordered elements. The stored elements
can be referred by an index number or by the key associated with the elements.
It offers the following methods and properties based on the documentation of Visual
Basic .NET:
"Item(i|key)": Property to return the element of the specified index or key. Item()
is the default method of a collection object, so you can call this method without
the method name, like object(i|key), instead of object.Item(i|key).
"Count": Property to return the number of elements in the collection.
"Add(element)": Method to add an element at the end of the collection without a key.
"Add(element, key)": Method to add an element at the end of the collection with a key.
"Remove(i|key)": Method to remove the element of the specified index or key.
Unfortunately, I was not able to write an ASP page with a new collection object.