Multiple choice asp

In ASP, a request object retrieves info from a user by ________.

  1. a collection of values sent as cookies in a HTTP header

  2. a collection of data sent with a submitted form

  3. from client variables described from within an object

  4. from the OS module

  5. A&B

Reveal answer Fill a bubble to check yourself
E Correct answer
Explanation

The ASP Request object retrieves user information through multiple collections: the Form collection (POST data) and the Cookies collection (HTTP cookie headers). Both are valid sources.