references
http://stackoverflow.com/a/7708659
http://preloaders.net/
just include the following code snippet into a form tag aka
using Image as Loading
using Text as Loading
http://stackoverflow.com/a/7708659
http://preloaders.net/
just include the following code snippet into a form tag aka
JavaScript:
<form></form>
using Image as Loading
JavaScript:
<asp:UpdateProgress id="updateProgress" runat="server">
<div style="position: fixed; text-align: center; height: 100%; width: 100%; top: 0; right: 0; left: 0; z-index: 9999999; background-color: #000000; opacity: 0.7;">
<asp:Image ID="imgUpdateProgress" runat="server" ImageUrl="~/images/ajax-loader.gif" AlternateText="Loading ..." ToolTip="Loading ..." style="padding: 10px;position:fixed;top:45%;left:50%;" />
</div>
</ProgressTemplate>
</asp:UpdateProgress>
using Text as Loading
JavaScript:
<asp:UpdateProgress id="updateProgress" runat="server">
<div style="position: fixed; text-align: center; height: 100%; width: 100%; top: 0; right: 0; left: 0; z-index: 9999999; background-color: #000000; opacity: 0.7;">
[B]Loading ...[/B]
</div>
</ProgressTemplate>
</asp:UpdateProgress>