856Software EngineeringMedium
An ASP.NET page uses a Datagrid displays employee information.The Web application supports a large number of concurrent users, who will be saving data from the grid back to the database?
ADisable View State and don’t use session state
BDisable ViewState and use Session State
CUse View State
DUse URL munging
Correct answer
A. Disable View State and don’t use session state
Explanation
The correct answer is Disable View State and don’t use session state.