Link to home
Start Free TrialLog in
Avatar of sl1nger
sl1nger

asked on

Getting an error message on submit

Has anyone seen this before?

Request object: 006~ASP 0207~Cannot use Request.Form~Cannot use Request.Form collection after calling BinaryRead."

I have a simple if statement throwing this error:

if Request.form("submitted") <> "" then
   response.write "Thanks for submitting"
end if
Avatar of peh803
peh803
Flag of United States of America image

Are you using ASPUpload?
ASKER CERTIFIED SOLUTION
Avatar of peh803
peh803
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of sl1nger
sl1nger

ASKER

ok. I am using an upload.  I wrote in the uploadformrequest and the new error is "variable undefined".
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of sl1nger

ASKER

I actually have 3 different forms in the page.  The first is the upload and later I call the other form to remove items from a list.  Could the read connection be closed and allow my page to function normally?  Or I wonder how I could use UploadFormRequest...
Avatar of sl1nger

ASKER

As for the last web link... It puts me closer w/ objFileUp.Form("submitted"); however, my remove form that calls submitted is actually named frmRemove.
Avatar of sl1nger

ASKER

ok, I think if I just change my form enctype from form-data.  It may work.