<!DOCTYPE html>
<html>
<body>
<%
dim d
set d=Server.CreateObject("Scripting.Dictionary")
d.Add "n", "Norway"
d.Add "i", "Italy"
d.Key("i") = "it"
Response.Write("键 i 已设为 it,值是: " & d.Item("it"))
set d=nothing
%>
</body>
</html>