InterviewSolution
| 1. |
What Is A View State? |
|
Answer» View State is one of the state management methods USED to retain the page and it's control VALUES between post backs. It Store the values of page or control properties that you DEFINE. One bit of state that does not need to be PERSISTED across post-backs is the control's properties specified in the declarative syntax, SINCE they are automatically reinstated in the page's instantiate stage. View State is a client side state management. View State is one of the state management methods used to retain the page and it's control values between post backs. It Store the values of page or control properties that you define. One bit of state that does not need to be persisted across post-backs is the control's properties specified in the declarative syntax, since they are automatically reinstated in the page's instantiate stage. View State is a client side state management. |
|