I want to show the UpdateProgress on page A when a user clicks on the "Next" button to go to next page. The next page is Page B, which has heavy data loading.

When the button is clicked, it doesn't show the UpdateProgress.

What's missing from this code, and how can it be made to show?

<asp:UpdateProgress ID="UpdateProgress1" runat="Server" AssociatedUpdatePanelID="UpdatePanel1">
    <ProgressTemplate >
       Please wait ...
    </ProgressTemplate>
</asp:UpdateProgress>

<asp:UpdatePanel ID="UpdatePanel1" runat="server"> 
   <Triggers>
      <asp:AsyncPostBackTrigger ControlID="btnNext" EventName="Click" />
   </Triggers>                                    

   <ContentTemplate>                                          
      <asp:Button ID="btnCancel" runat="server" TabIndex="1" Text="Cancel"onclick="btnCancel_Click" />                                    
      <asp:Button ID="btnNext" runat="server" TabIndex="2" Text="Next" onclick="btnNext_Click" />
   </ContentTemplate>                                 
</asp:UpdatePanel>
link|improve this question

feedback

4 Answers

up vote 0 down vote accepted

Try setting DisplayAfter to a very small value to make the progress indicator appear immediately, e.g.:

<asp:UpdateProgress ID="UpdateProgress1" runat="Server" AssociatedUpdatePanelID="UpdatePanel1" DisplayAfter="1">
link|improve this answer
feedback

Couple of things to try:

1) Move the UpdateProgress control inside the UpdatePanel

2) Remove the AssociatedUpdatePanelID attribute from the UpdateProgress tag

I'm banking on Option 1 doing the trick.

EDIT

Here is a non-ProgressTemplate way, using client-side event handlers:

<script type="text/javascript">
Sys.WebForms.PageRequestManager.getInstance().add_beginRequest(BeginRequestHandler); 
Sys.WebForms.PageRequestManager.getInstance().add_endRequest(EndRequestHandler);

function BeginRequestHandler(sender, args)
{
     // some code to show image, e.g:
     document.getElementById('somedivwhichasimage').className = 'show';
}

function EndRequestHandler(sender, args)
{
     // some code to hide image, e.g:
     document.getElementById('somedivwhichasimage').className = 'hidden';
}
</script>
link|improve this answer
Still not wokring.. – Tony Nov 1 '10 at 23:40
is that code you posted exact? is there anything missing? there are other ways to do the progress (do it purely client-side with javascript). see my edit for another option. – RPM1984 Nov 2 '10 at 0:19
1  
Move the UpdateProgress control inside the UpdatePanel -> Worked for me, thanks – Thomas Aug 11 '11 at 8:15
feedback

Add this code on the code behind of this page.

protected void btnNext_Click(object sender, EventArgs e) { System.Threading.Thread.Sleep(3000); }

Hope this helps!!

Edit: Follow this link: http://msdn.microsoft.com/en-us/library/bb386421.aspx

Adding the code from aspx page that I tried and is working,





link|improve this answer
Still not working.. – Tony Nov 1 '10 at 23:31
Somehow I cannot add the code, you may refer the link. Hope that helps!! – Priya10 Nov 2 '10 at 14:11
feedback

try putting UpdateProgress control inside UpdatePanel. and that should work for you.
hope that helps!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.