Latest web development tutorials

ASP TotalBytes property

Request Object Reference Complete Request Object Reference

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

grammar

varbytes=Request.Totalbytes

Examples

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

<%
dim a
a=Request.TotalBytes
%>


Request Object Reference Complete Request Object Reference