최신 웹 개발 튜토리얼
 

ASP에서 removeAll 방법


<완벽한 사전 객체 참조

제거 방법은 사전 개체에서 모든 키 / 항목 쌍을 제거합니다.

통사론

DictionaryObject.RemoveAll

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

d.RemoveAll

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:

(nothing)

<완벽한 사전 객체 참조