updatePanel で UpdateProgress を最初のページ読み込み時に表示するにはどうすればよいですか? updatepanel などにあるグリッドを同じページで並べ替えた後は正常に機能しますが、最初のページの読み込みでは機能しません。私に何ができる?これが私のコードのサンプルです。コードビハインドにこれに関するコードがないため、問題の一部である可能性があります。
<asp:UpdateProgress ID="updProgress"
AssociatedUpdatePanelID="UpdatePanel1"
runat="server">
<ProgressTemplate>
<div id="postback-loader">
<img src="Images/ajax-loader-blue.gif" style="margin:11px auto;display:block;" /><br />
<asp:Label ID="Label1" runat="server" Text="Loading Computers..." Width="170px"></asp:Label>
</div>
</ProgressTemplate>
</asp:UpdateProgress>