The most coveted and valuable feature in ASP.NET is the automatic page state persistence across roundtrips to the same page (what we call as postbacks). This is achieved by storing the required data as encoded base 64 string in the hidden field called __VIEWSTATE. ViewState, technically is a StateBag implementation.
At times we might need to inspect what is stored at that point of time in this Page StateBag (ViewState). The following tools come as quick and effective remedies for us.
- ViewState Decoder from PluralSight
- Check out the appropriate version since the website has separate decoders for 1.0, 1.1 and 2.0 frameworks.
No comments:
Post a Comment