Please note, this is a STATIC archive of website www.w3schools.com from 05 May 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.
THE WORLD'S LARGEST WEB DEVELOPER SITE

ASP TotalBytes Property


❮ Complete Request Object Reference

The TotalBytes property is a read-only property that returns the total number of bytes the client sent in the body of the request.


Syntax

varbytes=Request.Totalbytes

Example

The following code sets the variable a equal to the total number of bytes sent in the body of the request:

<%
dim a
a=Request.TotalBytes
%>

❮ Complete Request Object Reference