BinaryRead 方法获取作为 POST 请求的一部分而从客户端传送到服务器的数据
variant = Request.BinaryRead(count)
下列示例使用 BinaryRead 方法将请求的内容放入一个安全的数组中。
<% Dim binread Dim bytecount bytecount = Request.TotalBytes binread = Request.BinaryRead(bytecount) %>