[This is preliminary documentation and subject to change]
The TotalBytes property specifies the total number of bytes the client sent in the body of the request. This property is Read-only.
Counter= Request.TotalBytes
The following script sets a variable equal to the total number of bytes included in a request object.
<%
Dim bytecount
bytecount = Request.TotalBytes
%>