当前位置: 首页 > 网络学院 > 服务端脚本教程 > ASP > ASP TotalBytes 属性
The TotalBytes property is a read-only property that returns the total number of bytes the client sent in the body of the request.
TotalBytes属性是一个只读属性,它返回用户发送请求当中的总字节数。
varbytes=Request.Totalbytes |
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 %> |