ASP Key Property
Definition and Usage
The Key property sets a new value for an existing key in a Dictionary object.
Syntax:
DictionaryObject.Key(key)=newkey
Parameter | Description |
---|---|
key | Required. The name of the key to be modified. |
newkey | Required. The new name of the key. |
Instance
<% 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