Saturday, July 10, 2010

How to auto update a segment a page - Asp.net

<%@ Page Language="C#" %>
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
    <title></title>
    <style type="text/css">
        .Hide {display:none; }
    </style>
    <script runat="server">
        protected override void OnLoad(EventArgs e)
        {
            base.OnLoad(e);
            ScriptManager.RegisterStartupScript(
                thisthis.GetType(), 
                this.GetType().Name, 
                string.Format("setTimeout(\"__doPostBack('{0}','')\", 5000)", 
                this.btnPostback.UniqueID), 
                true);
            this.lblUpdatedOn.Text = DateTime.Now.ToString("hh:mm:ss");            
        }
        protected void AutoPostback(object sender, EventArgs e)
        {
        }
    </script>
</head>
<body>
    
    <form id="form1" runat="server">
        <asp:ScriptManager ID="ScriptManager1" runat="server"></asp:ScriptManager>
        <asp:UpdatePanel runat="server" ID="upnlCascadeDropdown">
             <ContentTemplate>
                Last Updated on: <asp:Label runat="server" ID="lblUpdatedOn" />
                <asp:Button CssClass="Hide" 
                    runat="server" 
                    ID="btnPostback" 
                    OnClick="AutoPostback" 
                    UseSubmitBehavior="false" />
             </ContentTemplate>
        </asp:UpdatePanel>
    </form>
</body>
</html>

No comments:

Azure Storage Account Types

Defferent Types of Blobs Block blobs store text and binary data. Block blobs are made up of blocks of data that can be managed individually...