When a browser asks for a page from a server, it is called a request. The Request Object is used to get information from the user.

Collection

  • ClientCertificate - Holds field values stored in the client certificate
  • Cookies(name) - Holds cookie values
  • Form(element_name) - Holds form (input) values. The form must use the post method
  • QueryString(variable_name) - Holds variable values in the query string
  • ServerVariables(server_variable) - Holds server variable values

Property

  • TotalBytes - Holds the total number of bytes the client is sending in the body of the request

Method

  • BinaryRead - Fetches the data that is sent to the server from the client as part of a post request



Practice Excercise Practice now