adspace


Explain how viewstate is being formed and how it's stored on client in .net?

Answer Posted / Chand Mohmmad

ViewState in ASP.NET is a hidden field control that stores server control property values, view-state enabled control values, and other page-specific data on the client. The ViewState is created by serializing the object graph of the page and its controls into a Base64-encoded string and stored within the page's <form> tag as __VIEWSTATE.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Write the .net syntax for 'while loop'?

1141