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. It is important that the Web application doesn't overwhelm the Web Server.

Options
- Disable View State and don't use session state
- Use View State
- Use URL munging
- Disable ViewState and use Session State


CORRECT ANSWER : Disable View State and don't use session state

Write your comments

 
   
 
 

Enter the code shown above:
 
(Note: If you cannot read the numbers in the above image, reload the page to generate a new one.)


Advertisement