YouTip LogoYouTip

Met Items

# ASP Items Method * * Complete Dictionary Object Reference Manual](#) * * * The Items method returns an array containing all the items in a Dictionary object. ### Syntax DictionaryObject.Items ### Example <% dim d,a,i set d=Server.CreateObject("Scripting.Dictionary") d.Add "n","Norway" d.Add "i","Italy" d.Add "s","Sweden" Response.Write("

Item values:

") a=d.Items for i=0 to d.Count-1 Response.Write(a(i)) Response.Write("
") next set d=nothing %> Output: Item values: Norway Italy Sweden * * Complete Dictionary Object Reference Manual](#)
← Met KeysMet Exists β†’