Navigation :
Bookmark :
-
Del.icio.us
-
Digg
-
Furl
Newsvine
-
Reddit
-
StumbleUpon
-
Technorati
-
Squidoo
-
Windows Live
-
Yahoo MyWeb
-
Ask
-
Google
Ads :
Request Object
Request Object
The request object is used to get information from a user.
Collections
| Collection | description |
| ClientCertificate | this holds values for all of the fields in the client certificate |
| Cookies | this holds the values of all the cookies sent from the users system |
| Form | this holds values of all the HTML controls contained between the <FORM> tags . The FORM METHOD must be set to POST. |
| QueryString | this is a collection of all the name/value pairs appended to the URL |
| ServerVariables | this is a collection of all the HTTP header values sent from the client plus the values of several of the servers environment variables |
| property | description |
| TotalBytes | holds the total number of bytes in the body of a request sent by the client. |
| Method | Description |
| BinaryRead(count) | retrieves the (count) amount of bytes of data from the clients request when the data is sent by the POST method. |