In ASP.NET, which object is responsible for maintaining the state information of an individual client?
Explanation
The Session object in ASP.NET is used to store and manage data specific to a single user session, thereby preserving the client's state across multiple requests. The Application object holds data shared among all users, the Server object provides server-side utilities, the Response object handles output sent to the client, and the Request object contains information about the current HTTP request.