欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

ASP接收Post的Byte数组数据并保存

程序员文章站 2022-06-10 16:50:25
asp接收post来的二进制/byte数组数据,并保存为文件: <% server.scripttimeout=3600 i=request.totalbytes r=1024*200...

asp接收post来的二进制/byte数组数据,并保存为文件:

<%
server.scripttimeout=3600

i=request.totalbytes
r=1024*200

if i<r then r=i
set s=server.createobject(“adodb.stream”)
s.type=1
s.mode=3
s.open
while i>0
s.write request.binaryread(r)
i=i-r
wend
s.position=0
s.savetofile server.mappath(“a.txt”),2
s.close
%>

本文来自: 雪域博客