How do you manage states in asp.net application
-
Session object
-
Application object
-
View state
-
All of the above
D
Correct answer
Explanation
ASP.NET provides multiple state management mechanisms for different scopes and lifecycles. Session object maintains user-specific data across requests, Application object stores global data shared across all users, and ViewState preserves page-specific control values during postbacks. All three are valid state management techniques in ASP.NET applications.