ネストされた更新パネルがあり、両方に独自の更新の進行状況があります。子更新パネル内のボタンをクリックすると、親の更新の進行状況もトリガーされます。
これを修正するには?
<asp:UpdatePanel ID="UpdatePanelParent" runat="server">
<ContentTemplate>
...
... some controls
...
<asp:UpdatePanel ID="UpdatePanelChild" runat="server" >
<ContentTemplate>
...
... some controls
</ContentTemplate>
</asp:UpdatePanel>
<asp:UpdateProgress ID="UpdateProgressChild" runat="server" AssociatedUpdatePanelID="UpdatePanelChild" DisplayAfter="0">
<ProgressTemplate>
Updating child...
</ProgressTemplate>
</asp:UpdateProgress>
</ContentTemplate>
</asp:UpdatePanel>
<asp:UpdateProgress ID="UpdateProgressParent" runat="server" AssociatedUpdatePanelID="UpdatePanelParent" DisplayAfter="0">
<ProgressTemplate>
Updating parent...
</ProgressTemplate>
</asp:UpdateProgress>