Multiple choice .net

Where does the view state store information?

  1. HTML source

  2. Text file

  3. URL

  4. Both a and b.

  5. All of the above.

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

View state is stored in a hidden form field called __VIEWSTATE within the page's HTML source. It's encoded and sent to the server with each postback, then reconstructed. This is why view state increases page size.