?? 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 + -