当前位置: 首页 > 网络学院 > 服务端脚本教程 > ASP > ASP RemoveAll 方法
The Remove method removes all the key/item pairs from a Dictionary object.
ASP Remove的作用是从字典中删除所有的关键词/元素组对(key/item pair)
DictionaryObject.RemoveAll |
<% d.RemoveAll Response.Write("<p>Key values:</p>") set d=nothing Output: Key values: (nothing) |