ASP TotalBytes 属性
ASP TotalBytes是一个只读属性。此属性用于返回客户端将通过请求正文发送的总字节数。
句法:
Counter = Request.TotalBytes
参数值:此属性接受上面提到的单个参数,如下所述:
- Counter:它包含一个计数器变量,用于接收客户端在请求正文中发送的字节总数。
示例:下面的代码使用一个计数器变量来存储包含的总字节数。
HTML
<%
dim countByte
'counter variable that counts the total number of bytes
countByte=Request.TotalBytes
%>