Version: 2.0
The Exists method is used to determine whether a key already exists in the specified Dictionary. Returns True if it does and False otherwise.
<%
dim guitars
set guitars=CreateObject("Scripting.Dictionary")
guitars.Add "e", "Epiphone"
guitars.Add "f", "Fender"
guitars.Add "g", "Gibson"
guitars.Add "h", "Harmony"
If guitars.Exists("g") Then
guitars.Item("g") = "Guild"
End If
%>
"Epiphone"
"Fender"
"Guild"
"Harmony"
This code uses the Exists method to see if the key with the value of 'g' exists in the Dictionary object and, if it does, changes its corresponding item value.