Results 1 to 3 of 3

Thread: Request object

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    Apr 2000
    Location
    Isle of Man
    Posts
    276
    If I post data to an asp page, I should be able to use the request object to access and manipulate that data, right?

    The question is, how?

    I've tried this

    Code:
    Dim MyStr
    
         MyStr = Request.BinaryRead, Request.TotalBytes
    and i get the error 'Expected End of Statement' occurring on the MyStr = .... line

  2. #2
    Guest
    You can read a Request like this.
    Code:
    Dim MyStr
    ' Reading MyData object in my post form
    MyStr= Request ("MyData")
    The error occur because your using ( , ) this char between two objects. Try this. I dont know if this will work.
    Code:
    Dim MyStr
    MyStr = Request.BinaryRead & Request.TotalBytes

  3. #3
    Guest
    You can read a Request like this.
    Code:
    Dim MyStr
    ' Reading MyData object in my post form
    MyStr= Request ("MyData")
    The error occur because your using ( , ) this char between two objects. Try this. I dont know if this will work.
    Code:
    Dim MyStr
    MyStr = Request.BinaryRead & Request.TotalBytes

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