<Complete Dictionnaire Object Reference
La méthode Exists renvoie une valeur booléenne qui indique si une clé spécifiée existe dans l'objet dictionnaire. Il retourne vrai si la clé existe et false sinon.
Syntaxe
DictionaryObject.Exists(key)
Paramètre | La description |
---|---|
key | Champs obligatoires. La valeur de clé pour rechercher |
Exemple
<%
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!
<Complete Dictionnaire Object Reference