ASP Key Property
❮ Complete Dictionary Object Reference
The Key property sets a new key value for an existing key value in a Dictionary object.
Syntax
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 |
Example
<%
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