An ASP object is something that typically has methods, properties, and collections. The main ASP objects are the Request, Response, Session, Server, and Application objects. The Request object collects data sent from the client to the server, including form data and query strings. Form data is collected using either the GET method, where data is appended to the URL, or the POST method, where data is sent as a separate bit stream. The Request.Form collection retrieves values of form elements submitted via a POST request. It can be used to display captured form values on subsequent pages.