精品熟女碰碰人人a久久,多姿,欧美欧美a v日韩中文字幕,日本福利片秋霞国产午夜,欧美成人禁片在线观看

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 對象參考手冊
相關文章