vote up 0 vote down star

Hi,

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.

But if i refreshes the whole page, i'm getting it all. Any thoughts on this?

Thanks

flag
Please provide some code to show us what you are doing. – Jason Heine Jun 3 at 12:25
Yes, please show us the source code.. – jinsungy Jun 3 at 12:51

1 Answer

vote up 1 vote down

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 FullSource extension will display the HTML for what's currently displayed, not the initial page response.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.