From http://www.w3schools.com (Copyright Refsnes Data)
Complete Dictionary Object Reference
The Count property returns the number of key/item pairs in the Dictionary object.
| DictionaryObject.Count |
|
<% dim d set d=Server.CreateObject("Scripting.Dictionary") d.Add "n","Norway" d.Add "i","Italy" d.Add "s","Sweden" Response.Write("The number of key/item pairs: " & d.Count) set d=nothing %> Output: The number of key/item pairs: 3 |
Complete Dictionary Object Reference
From http://www.w3schools.com (Copyright Refsnes Data)