<%@ 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( this, this.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>
Saturday, July 10, 2010
How to auto update a segment a page - Asp.net
Subscribe to:
Post Comments (Atom)
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...
-
Why we need asynchronous tasks? Execute a time consuming operations in parallel to the CLR thread which execute the request If you have ...
-
Demo: I was thinking a way to show images before actually uploading them to server. I would say to preview images using javascript. Obv...
No comments:
Post a Comment