Я думаю, что этот пример базовый достаточно:
<form id="form1" runat="server">
<asp:ScriptManager ID="sm" runat="server" />
<asp:UpdateProgress runat="server" id="PageUpdateProgress">
<ProgressTemplate>
Loading...
</ProgressTemplate>
</asp:UpdateProgress>
<asp:UpdatePanel runat="server" id="Panel">
<ContentTemplate>
<asp:Button runat="server" id="upd" onclick="updButton_Click"
text="click to update" />
</ContentTemplate>
</asp:UpdatePanel>
</form>
В коде updButton_Click
обновление занимает много времени, в течение периода, который вы увидите на странице Загрузка ... , вы можете изменить текст на <img src="blabla" />
, чтобы сделать его как ProgressBar
(например, изображение GIF с подвижной полосой)