Answered Questions

  • What is view state and how it is maintained?

    ViewState in ASP.NET IntroductionMicrosoft ASP.NET Web Forms pages are capable of maintaining their own state across multiple client round trips. When a property is set for a control, the ASP.NET saves the property value as part of the control's state. To the application, this makes it appear that the page's lifetime spans multiple client requests. This page-level state is known as the view state...

    cynthia justin

    • Oct 18th, 2006

    View state allows the state of objects to be stored in a hidden field on the page.it is transported to the client and back to the server, and is not stored on the server or any other external source.view state is used to retain the state of serverside objects between post backs.