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 %>