최신 웹 개발 튜토리얼
 

ASP키 방법


<완벽한 사전 객체 참조

키 방법은 사전 객체에있는 모든 키의 배열을 반환합니다.

통사론

DictionaryObject.Keys

<%
dim d,a,i
set d=Server.CreateObject("Scripting.Dictionary")
d.Add "n","Norway"
d.Add "i","Italy"
d.Add "s","Sweden"

Response.Write("<p>Key values:</p>")
a=d.Keys
for i=0 to d.Count-1
  Response.Write(a(i))
  Response.Write("<br>")
next

set d=nothing
%>

Output:

Key values:

n
i
s

<완벽한 사전 객체 참조