📄 t5_formok.asp
字号:
<% @language="vbscript" %>
<html>
<head>
<title>检索表单数据示例</title>
</head>
<body>
<h3>你输入的登陆个人信息如下</h3>
学号:<% =request.form("txtXH")%><p>
姓名:<% =request.form("txtXM")%><p>
专业:<% =request.form("txtZY")%><p>
性别:<% =request.form("radXB")%><p>
班干否:
<%
if request.form("chkBG")<>" " then
response.Write request.form("chkBG")
end if
%>
团员否:
<%
if request.form("chkTY")<>" " then
response.Write request.form("chkTY")
end if
%>
助学贷款否:
<%
if request.form("chkZXDK")<>" " then
response.Write request.form("chkZXDK")
end if
response.write "<p>来源:" & request.form("optLY") &"<p>"
%>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -