In an ASP.NET application, a DataGrid displays employee details. The web app must handle many simultaneous users who will update data from the grid back to the database. What is the best approach to maintain state in this scenario?

Choose the correct answer

Explanation

Using ViewState is the recommended method to maintain the state of data in a DataGrid for multiple users updating information concurrently. URL rewriting (munging) is not suited for preserving complex state data. Disabling ViewState and depending on Session State or not using either can lead to loss of data or poor scalability.