Set
The Set statement is used to assign an object to
a variable and is primarily used in object creation. You
should be careful to use the Set keyword whenever you
are assigning or creating an object.
Dim oDict ' dictionary object
' create an instance of the scripting dictionary (hash table)
Set oDict = Server.CreateObject("Scripting.Dictionary") oDict.Add "red", "#ff0000" oDict.Add "green", "#00ff00" oDict.Add "blue", "#0000ff"
|
 |

|