Alan Araya
Alan Araya

Reputation: 721

Chrome realod images after every postback - updatepanel

I have a page that's running with an UpdatePanel inside. When i click in a button it does it normal postback and loads a grid.

The problem is: The images inside the grid and other images inside the updatepanel are "refreshing". The content(HTML/Plain text) is not....So it look's so weird to see the images reloading them self and the text being static.

I am using updateMode = 'Always'. But already tried with mode = 'Conditional' and didn't worked.

I've tested on IE 8 and 9 and it looks fine, no image is reloading.Only on chrome.

Any ideas of what it could be?

Upvotes: 2

Views: 1151

Answers (1)

Alan Araya
Alan Araya

Reputation: 721

Yeah aleafonso, you are correct. I've tested on IIS production server and it works fine. I guess it have to do with the way IIS respond to the GET of an image. It returns HTTP 304(not modified) after images loading the first time....that's probably making some difference.

Upvotes: 1

Related Questions