FREE Web Template Download
HTML CSS JAVASCRIPT SQL PHP BOOTSTRAP JQUERY ANGULARJS TUTORIALS REFERENCES EXAMPLES Blog
 

ASP Count Property


Dictionary Object Reference Complete Dictionary Object Reference

The Count property returns the number of key/item pairs in the Dictionary object.

Syntax

DictionaryObject.Count

Example

<%
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

Dictionary Object Reference Complete Dictionary Object Reference