Multiple choice technology web technology

What ASP.NET object encapsulates the user’s data as it is sent from a form in a page?

  1. The Session object.

  2. The Application object.

  3. The Response object.

  4. The Request object.

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

The Request object encapsulates all data sent from the client to the server, including form data, query strings, cookies, and server variables. When a user submits a form, the form data is accessible through the Request object (Request.Form, Request.QueryString). Session (option A) stores user-specific data across pages, Application (option B) stores application-wide data, and Response (option C) sends data to the client.