ASP Exists 方法

asp exists 方法

dictionary 对象参考手册 完整的 dictionary 对象参考手册

exists 方法返回一个布尔值,该布尔值指示在 dictionary 对象中是否存在指定的 key。如果存在,返回 true,否则返回 false。

语法

dictionaryobject.exists(key)

参数 描述
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
%>

输出:

key exists!

dictionary 对象参考手册 完整的 dictionary 对象参考手册
相关文章