ASP RemoveAll పద్ధతి

నిర్వచనం మరియు వినియోగం

RemoveAll పద్ధతి ఒక Dictionary వస్తువులో అన్ని key/item ను తొలగిస్తుంది.

వినియోగం సంకేతం:

DictionaryObject.RemoveAll

ప్రతిరూపం

<%
dim d,a,i
set d=Server.CreateObject("Scripting.Dictionary")
d.Add "c","China"
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("
") next set d=nothing %>

输出:

Key values:
(nothing)