<Completo dicionário Object Reference
O método existe retorna um valor booleano que indica se uma chave especificada existe no objecto dicionário. Ele retorna verdadeiro se a chave existir, e false se não.
Sintaxe
DictionaryObject.Exists(key)
Parâmetro | Descrição |
---|---|
key | Requeridos. O valor da chave para procurar |
Exemplo
<%
dim d
set d=Server.CreateObject("Scripting.Dictionary")
d.Add "n","Norway"
d.Add "i","Italy"
d.Add "s","Sweden"
if d.Exists("n")=true then
Response.Write("Key exists!")
else
Response.Write("Key does not exist!")
end if
set d=nothing
%>
Output:
Key exists!
<Completo dicionário Object Reference