返回索引

TotalBytes

TotalBytes 属性指定客户端在请求正文中发送的总字节数。该属性只允许读。

语法

Counter = Request.TotalBytes
 

参数

Counter
指定一个变量来接收客户端在请求中发送的总字节数。

示例

以下脚本设置一个等于请求对象中包括的总字节数的变量。

<%
Dim bytecount
bytecount = Request.TotalBytes
%>

应用于

Request 对象

请参阅

BinaryRead


© 1997 by Microsoft Corporation. All rights reserved.