ASP Exists 方法

定义和用法

Exists 方法返回在 Dictionary 对象中是否存在指定的 key 的布尔值。如果存在,返回 true,否则返回 false。

语法:

  1. DictionaryObject.Exists(key)
参数 描述
key 必需的。需搜索的 key 值。

实例

  1. <%
  2. dim d
  3. set d=Server.CreateObject("Scripting.Dictionary")
  4. d.Add "c","China"
  5. d.Add "i","Italy"
  6. d.Add "s","Sweden"
  7.  
  8. if d.Exists("c")=true then
  9. Response.Write("Key exists!")
  10. else
  11. Response.Write("Key does not exist!")
  12. end if
  13.  
  14. set d=nothing
  15. %>

输出:

  1. Key exists!