views:

39

answers:

1

When is image withing update-progress control sent to client ??? Say a asp.net page has AJAX implemented. We use update panel and update progress. Further we set a .gif image in the update progress control. Now when will the image be sent to the client ? At the first time when the page was requested or when the update panel was updated ? I read about the topic at http://jai-on-asp.blogspot.com/2010/01/ajax-for-aspnet.html

+1  A: 

The browser will request the image from the server as soon as one of the HTML elements specifies the url for the image.

With most update progress controls this will not happen until the javascript running on the client fires off and makes the control visible.

Stephen M. Redd