tutoriais mais recente desenvolvimento web
 

ASP Key Property


<Completo dicionário Object Reference

A propriedade Key define um novo valor de chave para um valor de chave existente em um objeto Dictionary.

Sintaxe

DictionaryObject.Key(key)=newkey

Parâmetro Descrição
key Requeridos. O nome da chave que será alterado
newkey Requeridos. O novo nome da chave

Exemplo

<%
Dim d
Set d=Server.CreateObject("Scripting.Dictionary")
d.Add "re","Red"
d.Add "gr","Green"
d.Add "bl","Blue"
d.Add "pi","Pink"
d.Key("re")="r"
Response.Write("The value of key r is: " & d.Item("r"))
%>

Output:

The value of key r is: Red

<Completo dicionário Object Reference