Cannot call BinaryRead after using Request.Form co
ppowell | Posted 9:21am 2. July 2002 Server Time |
All of a sudden today, every single program I wrote for the CMA has failed with the exact same error:
Request object error 'ASP 0206 : 80004005'
Cannot call BinaryRead
/cma/download/process.asp, line 17
Cannot call BinaryRead after using Request.Form collection.
This upon the following line:
data = Request.BinaryRead(Request.TotalBytes)
This is used for every HTML file that contains the following form configuration
<form.. enctype=multipart/form-data>
Used for forms that contain file elements.
Anyone out there ever experience this w/o changing any code anywhere?
Thanx
Phil |
mp3cdman | Posted 4:52pm 2. July 2002 Server Time |
Programs dont just suddenly change for no reason. Something has influenced this error....
Did you check it on 1st and 2nd of July... the month change may have done something....
Or something else must have changed...
You cant do a binary read after using the forms collection anyway cos the data is corrupted... use binary upload component that can separate binary and normal form data
mp3cdman
mp3cdman
tmkhenda | Posted 3:56am 7. November 2007 Server Time |
I have managed to work around this problem by avoiding to go directly to the file that cased the error, but rather go to a dummy page that will redirect to that page. This seems to make some Request to be forgotten, which is what I want!!
Thanx
Reply to Post Cannot call BinaryRead after using Request.Form co
|
|
|