El método de elementos ASP se utiliza para devolver una array de todos los elementos que se encuentran actualmente en un objeto de diccionario.
Sintaxis:
DictionaryObject.Items
Ejemplo: El siguiente código demuestra el método ASP Dictionary.Items.
ASP
<% dim dict,arr,i set dict=Server.CreateObject("Scripting.Dictionary") 'Add values to the dictionary dict.Add "g","geeks" dict.Add "c","coding" dict.Add "p","placements" 'Getting the items of the dictionary arr=dict.Items Response.Write("The values in the dictionary are:") 'Looping through the items for i=0 to dict.Count-1 Response.Write("<br> Value: " & arr(i)) next set dict=nothing %>
Producción:
The values in the dictionary are: Value: geeks Value: coding Value: placements
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA