Wednesday, March 28, 2012

UpdateProgress...animated GIF just stops...any ideas?

Since this post (http://forums.asp.net/thread/1469416.aspx) shows as resolved, I've decided to open a new post since I am having a problem with it. My animated GIF just stops. Has anyone ever had this issue? Ever been resolved?

Thanks!

Hi brenda

What do you mean by stops, does it not animate or does is not display at all? Did you try doing this?

<atlas:UpdateProgress ID="progress1" runat="server">
<ProgressTemplate>
<div class="progress">
<img src="http://pics.10026.com/?src=indicator.gif" />
Please Wait...
</div>
</ProgressTemplate>
</atlas:UpdateProgress>

Well this really works if you have your indicator.gif to be animated. Try this out and tell me if what I've understood from your problem is correct.

Thanks


This is my code I have so far, but the animated GIF just freezes. Is this inevitable because the page is rendering?

<

divstyle="float: right; color: #6870A4; font-family: Verdana, Tahoma, Arial; font-size: 11px;">
<asp:UpdateProgressID="UpdateProgress1"runat="server"DynamicLayout="true"DisplayAfter="0">
<ProgressTemplate>
<table>
<tr>
<td>
Loading Property -- Please Wait </td><td>
<imgstyle="padding-right: 10px;"src="../../images/ajax-loader.gif"alt="loading"/></td>
</tr>
</table>
</ProgressTemplate>
</asp:UpdateProgress>
</div>
If your code is causing the page to load, the .gif will stop animating. The UpdateProgess control is designed to be used in parallel with an UpdatePanel. In this scenario the page updates without the page actually loading.

No comments:

Post a Comment