thelordoftherings
Programmer
Hello,
My code is having this error:
Request object error 'ASP 0207 : 80004005'
Cannot use Request.Form
/uploadTester.asp, line 124
Cannot use Request.Form collection after calling BinaryRead.
I found this solution:
Due to the special ENCTYPE="multipart/form-data" attribute of your form, you cannot use the Reqest.Form collection. Use Upload.Form instead, but only after you call Upload.Save (SaveVirtual, SaveToMemory).
Can anyone please explain it with code example?
My code is having this error:
Request object error 'ASP 0207 : 80004005'
Cannot use Request.Form
/uploadTester.asp, line 124
Cannot use Request.Form collection after calling BinaryRead.
I found this solution:
Due to the special ENCTYPE="multipart/form-data" attribute of your form, you cannot use the Reqest.Form collection. Use Upload.Form instead, but only after you call Upload.Save (SaveVirtual, SaveToMemory).
Can anyone please explain it with code example?