Asp Object 之:TotalBytes
發表于:2007-06-30來源:作者:點擊數:
標簽:
TotalBytes
TotalBytes 屬性指定客戶端在請求正文中發送的總字節數。該屬性只允許讀。
語法
Counter = Request.TotalBytes
參數
- Counter
- 指定一個變量來接收客戶端在請求中發送的總字節數。
示例
以下腳本設置一個等于請求對象中包括的總字節數的變量。
<%
Dim bytecount
bytecount = Request.TotalBytes
%>
應用于
Request 對象
原文轉自:http://www.kjueaiud.com