<asp:ScriptManager ID="ScriptManager1" runat="server" />
<asp:UpdateProgress ID="UpdateProgress1" runat="server" AssociatedUpdatePanelID="UpdatePanel1">
<ProgressTemplate>
...Updating
</ProgressTemplate>
</asp:UpdateProgress>
<asp:UpdatePanel ID="UpdatePanel1" runat="server" ChildrenAsTriggers="false" UpdateMode="Conditional">
<ContentTemplate>
Current Time <asp:Label ID="Label1" runat="server" Text="Label"></asp:Label><br />
</ContentTemplate>
<Triggers>
<asp:AsyncPostBackTrigger ControlID="Button1" EventName="Click" />
</Triggers>
</asp:UpdatePanel>
<asp:Button ID="Button1" runat="server" Text="Button" onclick="Button1_Click" />
<asp:UpdateProgress ID="UpdateProgress1" runat="server" AssociatedUpdatePanelID="UpdatePanel1">
<ProgressTemplate>
...Updating
</ProgressTemplate>
</asp:UpdateProgress>
<asp:UpdatePanel ID="UpdatePanel1" runat="server" ChildrenAsTriggers="false" UpdateMode="Conditional">
<ContentTemplate>
Current Time <asp:Label ID="Label1" runat="server" Text="Label"></asp:Label><br />
</ContentTemplate>
<Triggers>
<asp:AsyncPostBackTrigger ControlID="Button1" EventName="Click" />
</Triggers>
</asp:UpdatePanel>
<asp:Button ID="Button1" runat="server" Text="Button" onclick="Button1_Click" />
If Button1 is inside UpdatePanel1, the value of postBackSettings.PanelID will be generated to "UpdatePanel1Button1". AssociatedUpdatePanelID will be checked with postBackSettings.PanelID. If they are equel, UpdateProgress will be displayed.If Button1 is outside UpdatePanel1,the value of postBackSettings.PanelID will be generated to "ScriptManager1Button1". AssociatedUpdatePanelID is not matched with it, so it can't pop out UpdateProgress.In this case, we have to show UpdateProgress manually when the value of get_postBackElement.id is button1.
http://www.asp.net/AJAX/Documentation/Live/ViewSample.aspx?sref=UpdateProgressTutorialIntro11
7 comments:
Hello Vince:
I've just encourter the same problem, but in my case my trigger is a checkboxlist (which is outside of UpdatePanel), I am not sure how to do it manually? like what is the id for postBackElement? I tried cbl1 even cbl1_0 etc. doesn't work (cbl1 is the checkboxlist id) Thank you Appreciate your help. I will check back your blog for your answer. :) :)
OK, it's me again. I just figured out. I actually forgot to add "autopostback=true" to the checkboxlist, say me silly. After i've done that, the id will be cbl1_0, that worked.
Thank you so much for your blog. I have googled for almost an hour and you are the ONLY one has the right answer, at least point the user to the right direction.
Thank you :)
I'm glad that it can help.
I'm starting learning asp.net, could You say something more about how to do this: show UpdateProgress manually when the value of get_postBackElement.id .
Wher I can find it?
I've just encourter the same problem and solution worked for me......
thanks
keep it up
I am so suprised that this actually worked for me, yes when the update progress is inside the panel and the trigger outside removing the AssociatedUpdatePanelID attribute works. Yippie!
Yes i try this trick to put update progress inside the update panel and it works accuratels. Thank you guys.
Post a Comment