|
-
Aug 12th, 2004, 09:28 PM
#1
Thread Starter
Lively Member
Request.Form, Request.QueryString, UploadFormRequest
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?
-
Aug 13th, 2004, 12:45 AM
#2
Thread Starter
Lively Member
ok nevermind.. i solved it using javascript. haha
my soln:
concatenate all the input fields into the document.formname.action attribute before submitting the form. --> so i can use Request.QueryString("") to retrieve the values
action="post" --> i can upload the files
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|