Quick References
ADO
ASP
CSS2
HTML
JavaScript
Jet SQL
VBScript
WML
WMLScript
WSH
XHTML
XML DOM
XSLT
Features
Knowledge Base
Tutorials
Partners
ZVON.ORG
XML
Planet Source Code
VisualBuilder
Web Design
Your HTML Source
XML/XSLT Forums
ASPAlliance
Scripts
Programmers Heaven
Tek-Tips Forums
Developer Fusion
Code Project
All Methods
METHOD: Dictionary.Exists
Implemented in version 2.0
object.
Exists
(keyvalue)
The
Exists
method is used to determine whether a key already exists in the specified
Dictionary
. Returns
True
if it does and
False
otherwise.
The following 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.
Code:
<%
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
%>
Output:
"Epiphone"
"Fender"
"Guild"
"Harmony"
Copyright 1999-2005 by Infinite Software Solutions, Inc. All rights reserved.
Trademark Information