<!DOCTYPE html>
<html>
<body>
<%
dim d, a, s, i
set d=Server.CreateObject("Scripting.Dictionary")
d.Add "n", "挪威"
d.Add "i", "意大利"
Response.Write("键/项目对的数目:"& d.Count)
set d=Nothing
%>
</body>
</html>