开发者

Disable AJAX loading icon from WebResource.axd

开发者 https://www.devze.com 2023-03-16 07:17 出处:网络
Im using an UpdatePanel with a timer and when the timer fires I get a animated .gif from webresource.axd that never goes away so I end up with multiplyin开发者_JAVA百科g .gif\'s. How do I disable this

Im using an UpdatePanel with a timer and when the timer fires I get a animated .gif from webresource.axd that never goes away so I end up with multiplyin开发者_JAVA百科g .gif's. How do I disable this animation?


You can add a custom message you your UpdatePanel like that:

<asp:UpdateProgress ID="updProcess" 
       runat="server" AssociatedUpdatePanelID="YourProblematicPanelD">
    <ProgressTemplate>
            Left it emtpy, or type something here
    </ProgressTemplate>
</asp:UpdateProgress>

This UpdateProgress can be outside the Panel.

Anyway as I say there is no default wait icon for the update panel, search to find how they add it in your page

0

精彩评论

暂无评论...
验证码 换一张
取 消