本人菜鸟,不大懂程序,还望各位站在我的立场回答问题,先以致谢。
出现问题详细如下:
Request 对象 错误 'ASP 0206 : 80004005'
不能调用 BinaryRead
/ebusiness/include/upload.asp,行 20
使用 Request.Form 集合之后,不能调用 BinaryRead。
upload.asp文件源码太长,请见:
http://www.headset.cn/upload.txt------------------------------------------------------------
你可以用form获得表单非file内容。
如:
Set up = new upload_5xSoft
title = up.form("title")
file = up.file("file")
其中title为<input type="text" id="title" name="title" value="a" />
file 为<input type="file" name="file" />
因为你的表单要上传文件,那么
form的属性为enctype="multipart/form-data"
所以不能再使用request.form来获得表单信息了。