<html>
<body>
<%
dim d
set d=Server.CreateObject("Scripting.Dictionary")
d.Add "c", "China"
d.Add "i", "Italy"
if d.Exists("c")= true then
Response.Write("¼ü´æÔÚ¡£")
else
Response.Write("")
end if
set d=nothing
%>
</body>
</html>