Update Panel Missing Data - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T08:00:30Z http://stackoverflow.com/feeds/question/944360 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/944360/update-panel-missing-data 0 Update Panel Missing Data unknown (yahoo) 2009-06-03T12:05:23Z 2009-06-03T12:50:33Z <p>Hi,</p> <p>I have a update panel with a gridview inside. The gridview works fine when it loads from the start (if i look at the "view source" all data is there), but when a postback is done on that updatepanel and click "view source" again the other data i fetched was not there. It still has the old data.</p> <p>But if i refreshes the whole page, i'm getting it all. Any thoughts on this?</p> <p>Thanks</p> http://stackoverflow.com/questions/944360/update-panel-missing-data/944478#944478 1 Answer by Graham Clark for Update Panel Missing Data Graham Clark 2009-06-03T12:34:40Z 2009-06-03T12:34:40Z <p>View Source in browsers does not generally display any dynamic changes made to the HTML (i.e. changes resulting from an asynchronous post-back on an UpdatePanel). It will just give you the HTML that was received from the initial page request. If you're using Firefox, using Firebug to inspect the markup should show you dynamic changes. If you've got IE8 the Developer Tools will do the same thing. If you've got IE6 or 7 (or 8), the <a href="http://www.thundermain.com/FullSource.html" rel="nofollow">FullSource</a> extension will display the HTML for what's currently displayed, not the initial page response.</p>