La propiedad de elemento ASP se utiliza para devolver o establecer el valor de un elemento en el objeto de diccionario.
Sintaxis:
DictionaryObject.Item(key)[=newitem]
Valores paramétricos:
- clave: Especifica la clave que se asocia a un ítem. Es un atributo obligatorio.
- newitem: especifica el nuevo elemento que debe configurarse para la clave dada.
Ejemplo: El siguiente código demuestra la propiedad ASP Dictionary.Item.
ASP
<% Dim dict 'Create a new dictionary Set dict=Server.CreateObject("Scripting.Dictionary") 'Add values to the dictionary dict.Add "g","green" dict.Add "r","red" dict.Add "p","purple" 'Getting a value from the dictionary Response.Write("Value of key 'p' is: " & dict.Item("p")) 'Setting a new value to the key dict.Item("p") = "violet" 'Getting the value again from the dictionary Response.Write("<br>Value of key 'p' is: " & dict.Item("p")) %>
Producción:
Value of key 'p' is: purple Value of key 'p' is: violet
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA