ASP RemoveAll 方法

asp removeall 方法

dictionary 对象参考手册 完整的 dictionary 对象参考手册

removeall 方法从 dictionary 对象中删除所有的 key/item 对。

语法

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("

key values:

")
a=d.keys
for i=0 to d.count-1
  response.write(a(i))
  response.write("
")
next

set d=nothing
%>

输出:

key values:

(nothing)

dictionary 对象参考手册 完整的 dictionary 对象参考手册
相关文章