Click here to Skip to main content
15,886,801 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi all,
How to Show loading Image between each page postback.
Posted

Have a look at this article[^]. This article discusses three ways to do this.
 
Share this answer
 
You can use Simple AJAXControl for that. Try to Explore UpdatePanel and provide the UpdateProject Image for the same.
XML
<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.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900