黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

ASP Exists 方法

asp exists 方法

dictionary 對(duì)象參考手冊(cè) 完整的 dictionary 對(duì)象參考手冊(cè)

exists 方法返回一個(gè)布爾值,該布爾值指示在 dictionary 對(duì)象中是否存在指定的 key。如果存在,返回 true,否則返回 false。

語(yǔ)法

dictionaryobject.exists(key)

參數(shù) 描述
key 必需的。要搜索的 key 值。

實(shí)例

<%
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 對(duì)象參考手冊(cè) 完整的 dictionary 對(duì)象參考手冊(cè)
相關(guān)文章