InterviewSolution
Saved Bookmarks
| 1. |
What is ViewState? |
|
Answer» It is used to RETAIN the state of the server-SIDE objects between PAGE postbacks. After the page postback, it is STORED in a hidden field on the page at the client side. It is transported to both client and server side, and not stored on the server or any other EXTERNAL source. |
|