From http://www.w3schools.com (Copyright Refsnes Data)
Complete Dictionary Object Reference
The Key property sets a new key value for an existing key value in a Dictionary object.
| DictionaryObject.Key(key)=newkey |
| Parameter | Description |
|---|---|
| key | Required. The name of the key that will be changed |
| newkey | Required. The new name of the key |
|
<% Dim d Set d=Server.CreateObject("Scripting.Dictionary") d.Add "re","Red" d.Add "gr","Green" d.Add "bl","Blue" d.Add "pi","Pink" d.Key("re")="r" Response.Write("The value of key r is: " & d.Item("r")) %> Output: The value of key r is: Red |
Complete Dictionary Object Reference
From http://www.w3schools.com (Copyright Refsnes Data)