Request[]
(gb.web)
Dim aString As String
aString = Request [ Key As String ]
Returns the value of a request
variabile.
It can be:
- A variable encoded in the request URL, usually sent by a form with GET submit metodo.
- A variable encoded in the request contents, usually sent by a form with POST submit method.
The
Request classe support the two methods of data encoding:
application/x-www-form-urlencoded and
multipart/form-data.
 |
If the same field is used both in the request URL and in the request contents, the request contents will be returned.
If you want to make a difference, use either Request.Get or Request.Post.
|