<!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>