Please note, this is a STATIC archive of website www.w3schools.com from 05 May 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.
THE WORLD'S LARGEST WEB DEVELOPER SITE

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