6.2.5 TotalBytes Property

The TotalBytes property contains the total number of bytes sent by the client in the body of the request. The property is read-only.
Syntax
Counter = Request.TotalBytes
Parameters
- counter
- A variable to hold the total number of bytes the client sent in the request.
Example
The following example sets a variable equal to the total number of bytes included in a request object:
<%
dim bytecount
bytecount = Request.TotalBytes
%>
Copyright © 2000 Chili!Soft
|