📄 4-4.asp
字号:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>Dictionary对象</title>
</head>
<body>
你的个人信息如下:<br>
<%
dim oDic,oRs,oKey
set oDic = Server.CreateObject("Scripting.Dictionary")
oDic.Add "name","姓名"
oDic.Add "sex","性别"
oDic.Add "address","地址"
oDic.Add "zip","邮编"
oDic.Add "phone","电话"
oDic.Add "fax","传真"
oDic.Add "mobile","手机"
oDic.Add "intro","个人简介"
oDic.Add "email","电子邮件"
for each whatever in oDic
response.write whatever & "="
response.write oDic.item(whatever) & "<br>"
next
%>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -