📄 5-10.asp
字号:
<%
'判断是否post方式提交
if Request.ServerVariables("Request_Method")="POST" then
'是post方式提交
'共提交多少字节
a=Request.TotalBytes
'以二进制流的方式取到所有提交内容
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>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -