Where the viewstate is stored after the page postback?
ViewState is stored in a hidden field on the page at client side. ViewState is transported to the client and back to the server, and is not stored on the server or any other external source. In ASP.NET, after a page postback, the ViewState is stored in the __VIEWSTATE hidden field. This hidden field is … Read more