用CreateObject("Scripting.Dictionary") 來產生 hashtable
VBScript » Objects » Dictionary
Set MyHash = CreateObject("Scripting.Dictionary")
MyHash.Add "key", "Value"
hashKeys = MyHash.keys
for each k in MyHash.keys
responsew.write( MyHash.Item(k))
next
VBScript » Objects » Dictionary
留言