最新的Web开发教程
 

ASP存在方法


<完整字典对象参考

Exists方法返回一个布尔值,它指示在字典对象中是否存在指定的键。 如果该键存在,否则为false返回true。

句法

DictionaryObject.Exists(key)

参数 描述
key 需要。 搜索的关键值

<%
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!

<完整字典对象参考