Hi,

I'm trying to upload files using pure ASP codes, which requires ReadBinary method, and process some of the inputs from the form. That disallows me to use Request.Form("") collection. So, I've to use action="get" to use Request.QueryString("").

However, when I'm using action="get", my files wont get uploaded. Files get uploaded using action="post".

I've read somewhere that UploadFormRequest("") can be used. However, I encounter this error message:


Microsoft VBScript runtime (0x800A000D)
Type mismatch: 'UploadFormRequest'


erm.. help me?