Hi Againg mr Mudassar!.
When i want to showing picture or text while processing . it works only once. and not showing again.I used Script manager with update panel and update progress.
below are code snipped im used:
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<asp:Button ID="Button1" runat="server" onclick="Button1_Click1"
Text="Button" />
</ContentTemplate>
</asp:UpdatePanel>
<asp:UpdateProgress ID="UpdateProgress1" DynamicLayout="true" runat="server"
AssociatedUpdatePanelID="UpdatePanel1">
<ProgressTemplate>
<div class="progress">
<img src="1.gif" /> please wait...
</div>
</ProgressTemplate>
</asp:UpdateProgress>
in act . i want to showing any object that indicate the process(save data to the database).
how can i resolved it?