最新のWeb開発のチュートリアル
 

ASPメソッドが存在します


<完全な辞書オブジェクト参照

この方法は、指定されたキーがDictionaryオブジェクトに存在するかどうかを示すブール値を返し存在します。 これは、キーが存在する場合はtrueを返し、そうでない場合はfalse。

構文

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!

<完全な辞書オブジェクト参照