Forum Moderators: open

Message Too Old, No Replies

how I resolve

how I resolve

         

nivas

10:44 am on Feb 21, 2008 (gmt 0)

10+ Year Member



I am doing upload script in existing form. Using ASP script. I got following error

Request object error 'ASP 0207 : 80004005'

Cannot use Request.Form

/genisoft/new_feis_event_next1.asp, line 13

Cannot use Request.Form collection after calling BinaryRead.

Then I changed all request.form to upload.form after I am getting
following error

Microsoft VBScript runtime error '800a01a8'

Object required: ''

/genisoft/new_feis_event_next1.asp, line 12

mattur

4:04 pm on Feb 22, 2008 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



You're getting the error message because you're trying to read text form values when submitting an file upload (i.e. binary - multipart/form-data) form.

To process a file upload on IIS requires the use of a file upload object or a file upload script. Both methods should (but scripts don't always) provide a way to access the other form fields. Check the docs for the upload object or script you're using. If you're not using a file upload object or script then you need to :) Check with your host to find out if they have a file upload object installed.

(Posting a brief snippet of the relevant code is generally useful when asking for help.)