网络学院 w3pop社区 网络资源 IT新闻

w3pop.com :: 网络学院 :: ASP :: ASP TotalBytes 属性

会员登陆

帐号

密码

回答

记住密码

忘记密码? 注册

ASP TotalBytes 属性


作者:w3pop.com 翻译/整理:w3pop.com 发布:2007-04-28 浏览:1176 :: ::

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属性是一个只读属性,它返回用户发送请求当中的总字节数。

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

评论 (0) All