ASP Request Object
The Request object is used to retrieve information from visitors.
QueryString Collection Examples
Sending Query Information When a User Clicks a Link
Simple Application of the QueryString Collection
How to Use Information from a Form
Form Collection Examples
Simple Application of the Form Collection
How to Use Information from a Form
Other Examples
Detecting the Total Number of Bytes Sent by the User
Request Object
When a browser requests a page from a server, this action is called a request. The Request object is used to retrieve information from the user. Its collections, properties, and methods are described as follows:
Collections
| Collection | Description |
|---|---|
| ClientCertificate | Contains all field values stored in the client certificate. |
| Cookies | Contains all cookie values sent in the HTTP request. |
| Form | Contains all form (input) values sent by the form using the post method. |
| QueryString | Contains all variable values in the HTTP query string. |
| ServerVariables | Contains all server variable values. |
Properties
| Property | Description |
|---|---|
| TotalBytes | Returns the total number of bytes sent by the client in the request body. |
Methods
| Method | Description |
|---|---|
| BinaryRead | Retrieves data sent from the client to the server as part of a post request and stores it in a safe array. |