Click here to Skip to main content
15,891,372 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
As of now i'm displaying the "Please wait.." message when i onclick of btnsave button.. In btnsave_onclick event as per the requirement im calling the multiple stored procedures to save the data in various tables. during this process rather displaying please wait i want to display the percentage or percentage along with message.



ASP.NET
<asp:UpdateProgress ID="UpdtProgressProcess" runat="server" AssociatedUpdatePanelID="UpdatePanelDayEnd" DisplayAfter="5" >
          <ProgressTemplate>
          <img src="../images/round_rotate2.gif" alt="" style="width:18px;height:18px; text-align:center" />
          <span class="bigred">Please Wait...</span>
          </ProgressTemplate>
          </asp:UpdateProgress>
Posted
Updated 28-Jan-16 0:31am
v4

1 solution

It is true that HttpXmlRequest has a progress event that can tell you how much progress you made, but .NET implementation of UpdatePanel/UpdateProgress hides it from you...So no, you can not know...
 
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