-
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
-
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
-
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