Hey Imar,
I know this is a really minor problem but it is really frustrating me. I followed all of the steps for adding an updateprogress panel and my animated gifs show up just fine but they don't animate for some reason.
I generated a gif from
www.ajaxload.info and here is the markup just case I missed something.
Is it not supposed to animate or something?
Thanks, Dave.
HTML Code:
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<table id="FormTable" runat="server" class="style1">
<tr>
<td colspan="3">
<!-- .... the rest of the formtable .... -->
</table>
<br />
<asp:Label ID="MessageSent" Text="Your message has been submitted." visible="false" runat="server" />
</ContentTemplate>
</asp:UpdatePanel>
<asp:UpdateProgress ID="UpdateProgress1" AssociatedUpdatePanelID="UpdatePanel1"
runat="server" DynamicLayout="False">
<ProgressTemplate>
<div class="PleaseWait">
Please Wait...
</div>
</ProgressTemplate>
</asp:UpdateProgress>
CSS:
HTML Code:
.PleaseWait
{
height: 42px;
width: 500px;
background-image: url(Images/ajax-loader.gif);
background-repeat: no-repeat;
padding-left: 52px;
line-height: 42px;
}