<asp:ScriptManager ID="ScriptManager1" runat="server"></asp:ScriptManager>
<asp:UpdateProgress ID="updateProgress" AssociatedUpdatePanelID="updatePanel1" runat="server" DynamicLayout="true"> <ProgressTemplate> <div align="center" id="div_ProcessingMessage" runat="server"><span>Processing...</span></div> </div> </ProgressTemplate> </asp:UpdateProgress>
<asp:UpdatePanel ID="updatePanel1" runat="server">' ...
After these changes are in place, you can fire up your application and the message or image contained in the <div> tag will pop up in the specified location whenever a postback is triggered on the page. The longer the process takes, the longer this message will stay visible to the users. Once the postback operation is complete, the message will be hidden again.
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.