|
-
Mar 13th, 2001, 06:48 AM
#1
Thread Starter
Hyperactive Member
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
-
Mar 13th, 2001, 10:09 AM
#2
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
-
Mar 13th, 2001, 10:14 AM
#3
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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|