ASP.NET 2.0: How to make a page remember viewstate without creating history points? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-23T07:34:00Z http://stackoverflow.com/feeds/question/309683 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/309683/asp-net-2-0-how-to-make-a-page-remember-viewstate-without-creating-history-point 1 ASP.NET 2.0: How to make a page remember viewstate without creating history points? Robert 2008-11-21T18:20:26Z 2008-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#311132 0 Answer by spoon16 for ASP.NET 2.0: How to make a page remember viewstate without creating history points? spoon16 2008-11-22T09:24:29Z 2008-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#314782 0 Answer by Robert for ASP.NET 2.0: How to make a page remember viewstate without creating history points? Robert 2008-11-24T17:01:09Z 2008-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>