ASP.NET 2.0: How to make a page remember viewstate without creating history points? - Stack Overflow most recent 30 from stackoverflow.com2009-11-23T07:34:00Zhttp://stackoverflow.com/feeds/question/309683http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/309683/asp-net-2-0-how-to-make-a-page-remember-viewstate-without-creating-history-point1ASP.NET 2.0: How to make a page remember viewstate without creating history points?Robert2008-11-21T18:20:26Z2008-11-24T17:01:09Z
<p>I have a page with a few fields and a runtime-generated image on it. The contents of this page are inside an UpdatePanel. There is a button to take the user to a secondary page, which has a button that calls javascript:history.go(-1) when clicked.</p>
<p>The problem is, the first page does a full request instead of a postback or just using the state it was in before navigating away from it. That is, the fields are all reset to their default values, thereby confusing the user. I'd like their values to be retained regardless of navigation. I do not want to create a new history state for every field change.</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/309683/asp-net-2-0-how-to-make-a-page-remember-viewstate-without-creating-history-point/311132#3111320Answer by spoon16 for ASP.NET 2.0: How to make a page remember viewstate without creating history points?spoon162008-11-22T09:24:29Z2008-11-22T09:24:29Z<p>The only other option would be to track the field state in a client side cookie using JavaScript (which has limitations). It would be best to have an AJAX call that was executed prior to navigation to your secondary page that would allow the server to save the state of the page so that when your reverse navigation occurred you could properly render that state to the browser.</p>
http://stackoverflow.com/questions/309683/asp-net-2-0-how-to-make-a-page-remember-viewstate-without-creating-history-point/314782#3147820Answer by Robert for ASP.NET 2.0: How to make a page remember viewstate without creating history points?Robert2008-11-24T17:01:09Z2008-11-24T17:01:09Z<p>I think I'll try the AJAX idea when I have a little more time to work on it. I'll probably just send back the viewstate field :P Thanks for the input.</p>