<!DOCTYPE html>
<html>
<body>

<%
dim d
set d=Server.CreateObject("Scripting.Dictionary")
d.Add "n","挪威"
d.Add "i", "意大利"
Response.Write("项 n 的值为: " & d.item("n"))
set d=nothing
%>


</body>
</html>