[原创]ASP探测用户发送的字节总数

2013 年 5 月 31 日5810

发贴心情

[原创]ASP探测用户发送的字节总数

<html>
<body>

<formaction="/example/aspe/demo_aspe_totalbytes.asp"method="post">
请键入一些字符:
<inputtype="text"name="txt"><br/><br/>
<inputtype="submit"value="提交">
</form>

<%
IfRequest.Form("txt")<>""Then
Response.Write("您提交了:")
Response.Write(Request.Form)
Response.Write("<br/><br/>")
Response.Write("字节总计:")
Response.Write(Request.Totalbytes)
EndIf
%>

</body>
</html>

本文出处:http://http://www.zjjv.com///189.html
web起点:http://http://www.zjjv.com///

0 0