Hi,

I am landing on a page which lists a few thousand entries. When you land on the first page you get to see the first 20 items and then to navigate through the rest you have lots of next page links.

Internally these are navigated to by postbacks of the form below:

href="javascript:__doPostBack('ctl00$ContentPlaceHolder1$dgSearch','Page$3')">


When i say click on 'Page 3' the browser view is updated with fresh data for page 3 but when I then view source, what i see is still page 1 data. So the view has updated but view source has not been updated?

Can anybody explain to me whats going on here?

Thanks.