Moderate

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?

Correct answer: D. Disable View State and don't use session state

  • A. Use View State
  • B. Use URL munging
  • C. Disable ViewState and use Session State
  • D. Disable View State and don't use session state

Explanation

View State stores the grid data in each page response, increasing bandwidth and processing overhead for many concurrent users. Disabling View State and avoiding Session State reduces per-user server and page-state costs, while the database remains the persistence layer.

Last updated

Practise Web and Mobile Development

268 free Web and Mobile Development MCQs from Software Engineering, each with the correct answer and an explanation. Unlimited attempts, no account needed.

Exams that ask Software Engineering questions like this

Software Engineering is on this paper prepared for on TestUstad, and all of them draw the same bank, so this question is worth knowing for it.

Related questions