최신 웹 개발 튜토리얼
 

ASP방법은 존재


<완벽한 사전 객체 참조

contains 메소드는 지정된 키가 사전 개체의 존재 여부를 나타내는 부울 값을 반환 존재한다. 키가 존재하며, 그렇지 않은 경우는 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!

<완벽한 사전 객체 참조