⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 3-9.asp

📁 ASP+SQL Server动态网站开发从基础到实践教程
💻 ASP
字号:
<html>

<head>
<title>3-9.asp</title>
</head>

<body>
<%

response.write "你的详细情况如下:<br>"
For Each Item In Request.QueryString
	response.write item & "=" & request.QueryString(item) & "<br>"
next

response.write "<br><br>你喜欢的城市如下:<br>"
For Each Item In Request.QueryString("city")
	response.write item & "<br>"
next

response.write "<br><br>你的爱好如下:<br>"
For Each Item In Request.QueryString("hobby")
	response.write item  & "<br>"
next

%>

</body>


</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -