ASP Keys 方法

asp keys 方法

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

keys 方法返回一个包含 dictionary 对象中所有 key 的数组。

语法

dictionaryobject.keys

实例

<%
dim d,a,i
set d=server.createobject("scripting.dictionary")
d.add "n","norway"
d.add "i","italy"
d.add "s","sweden"

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:

n
i
s

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