Results 1 to 2 of 2

Thread: Request.Form, Request.QueryString, UploadFormRequest

  1. #1

    Thread Starter
    Lively Member
    Join Date
    Aug 2004
    Posts
    70

    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?

  2. #2

    Thread Starter
    Lively Member
    Join Date
    Aug 2004
    Posts
    70
    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
  •  



Click Here to Expand Forum to Full Width