Click here to Skip to main content
15,887,135 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
where is the store view state value
Posted

1 solution

Assuming you are talking about ASP.NET, ViewState is written in the web page. Speicifically, it's written into a hidden field that looks like this:
HTML
<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/wEPPP......" />
 
Share this answer
 
v2
Comments
Sergey Alexandrovich Kryukov 8-Mar-12 12:44pm    
Spelling: "input".
--SA
Pete O'Hanlon 8-Mar-12 13:42pm    
It's the new Monty Python tags in HTML 6. "We are the tags who say 'Ni'"
Sergey Alexandrovich Kryukov 8-Mar-12 19:46pm    
:-)

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900