i havent used UpdatePanelAnimationExtender, but UpdateProgress-Control combined with animated gif (Bermos Link):
<asp:UpdateProgress ID="UpdateProgress1" DynamicLayout="true" runat="server" AssociatedUpdatePanelID="UdpImeiLookup" DisplayAfter="500" > <ProgressTemplate> <div class="progress"> <img src="images/ajax-loader-arrows.gif" /> please wait... </div> </ProgressTemplate> </asp:UpdateProgress>
A ProgressTemplate will be displayed each time the associated update panel is called (after 500 ms in this example).
EDIT: where the progress class can be fe this:
.progress { text-align:center; vertical-align:middle; position: absolute; left: 44%; top: 35%; border-style:outset; border-color:silver; background-color:Silver; white-space:nowrap; padding:5px; }
Regards, Tim
source share