?? 5-10.asp
字號:
<%
'判斷是否post方式提交
if Request.ServerVariables("Request_Method")="POST" then
'是post方式提交
'共提交多少字節(jié)
a=Request.TotalBytes
'以二進制流的方式取到所有提交內(nèi)容
b=Request.BinaryRead(a)
end if
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>Request對象的 binaryread 方法</title>
</head>
<body>
<h1 align="center">Request對象的 binaryread 方法</h1>
<center>
<h3 align="center">post方法</h3>
<form method="post" name="loginbox1" action="?action1=ok">
用戶名: <input type="text" maxlength=16 size=13 name="userid1"><br><br>
密 碼: <input type=password maxlength=16 size=13 name="password1"> <br><br>
<input type="submit" value=" 登 陸 " name="submit1">
</form>
</center>
</body>
</html>
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -