案例:ASP/ADO案例     状态:不可编辑再运行    进入竖版
 运行结果 
x
 
1
2
<html>
3
<body>
4
5
<%
6
dim d
7
set d=Server.CreateObject("Scripting.Dictionary")
8
d.Add "c", "China"
9
d.Add "i", "Italy"
10
d.Key("i") = "it"
11
Response.Write("键 i 已设置为 it,其值是:" & d.Item("it"))
12
set d=nothing
13
%>
14
15
</body>
16
</html>
17