Typps Update panel progress

The UpdatePanelProgress control in Typps is a control that displays status of a partial refresh. All controls in Typps that require to make an xmlhttp request to the server use this to display status while blocking the screen until the operation is done. It supports

First time load time : 03/06/2012 23.17.53
Current time after a partial refresh is : 03/06/2012 23.17.53
  1. Aborting a long running operation
  2. Retrying a timed out operation
  3. Exposes clientside events you can hook into to customize it to the needs of your application
  4. Customize it's look and feel by editing a simple (2 class css style sheet)
  5. Documentation coming soon..
<div>
        First time load time :
        <%= DateTime.Now %></div>
    <asp:UpdatePanel ID="UpdatePanel1" runat="server">
        <ContentTemplate>
            Current time is :
            <%= DateTime.Now %><asp:Button ID="Button1" runat="server" Text="Update
                                    time" />
        </ContentTemplate>
    </asp:UpdatePanel>
    <t:UpdatePanelProgress ID="UpdatePanelProgress1" LoadingMessage="Updating time, hold on.."
        runat="server">
    </t:UpdatePanelProgress>