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.Keys
Implemented in version 2.0
[arrayname = ]
object.
Keys
The
Keys
method can be used to retreive all the keys in a
Dictionary
object
and place them in an array. We can then iterate through the keys using a
For
....
Next
loop.
The following code demonstrates this, using the
Dictionary
object's
Count
property to determine the amount of key/item pairs.
Code:
<%
dim guitars, arrayKeys, i
set guitars=CreateObject("Scripting.Dictionary")
guitars.Add "e", "Epiphone"
guitars.Add "f", "Fender"
guitars.Add "g", "Gibson"
guitars.Add "h", "Harmony"
arrayKeys = guitars.Keys
for i = 0 to guitars.Count -1
Response.Write ("<br>Key = " & arrayKeys(i) & " Item = " & _ guitars.Item(arrayKeys(i)))
next
%>
Output:
"Key = e Item = Epiphone"
"Key = f Item = Fender"
"Key = g Item = Gibson"
"Key = h Item = Harmony"
Copyright 1999-2005 by Infinite Software Solutions, Inc. All rights reserved.
Trademark Information