如何显示每个页面回发之间的加载图像

如何显示每个页面回发之间的加载图像

本文介绍了如何显示每个页面回发之间的加载图像.的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好,
如何显示每个页面回发之间的加载图像.

Hi all,
How to Show loading Image between each page postback.

推荐答案


<asp:ScriptManager ID="ScriptManager1" runat="server" />
       <asp:UpdateProgress runat="server" id="UpdateProgress">
           <ProgressTemplate>
               Loading Please Wait... // Here you can put a loading image as well
           </ProgressTemplate>
       </asp:UpdateProgress>
       <asp:UpdatePanel runat="server" id="Panel">
           <ContentTemplate>
Different ASP.NET Content that will participate in Partial Page rendering 
               <asp:Button runat="server" id="buttonSave" onclick="Save_Click" text="Save" />
           </ContentTemplate>
       </asp:UpdatePanel>



希望这会有所帮助.



Hope this will help.


这篇关于如何显示每个页面回发之间的加载图像.的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-26 15:50