zoukankan      html  css  js  c++  java
  • Asp.net ajax定时刷新页面

    要实现定时的刷新页面 使用Timer控件,<asp:Timer Interval="5000" runat="server" /> 
    Time控件需要配置触发器,触发器事件被触发,UpdatePanel就会刷新页面。触发器需要配置的属性有 ControlID 和 EventName。以下是具体的例子。

    <%@ Page Language="C#" %>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <script runat="server">
        protected void Page_Load(object sender, EventArgs e){
            CurrentTime.Text = DateTime.Now.ToLongTimeString( );
        }
    </script>
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head id="Head1" runat="server">
        <title>ASP.NET AJAX</title>
    </head>
    <body>
        <form id="form1" runat="server">
            <asp:ScriptManager ID="ScriptManager1" runat="server">
            </asp:ScriptManager>
            <asp:Timer ID="FiveSeconds" Interval="5000" runat="server" />
            <asp:UpdatePanel ID="UpdatePanel1" runat="server">
                <ContentTemplate>
                    <asp:Label ID="CurrentTime" runat="server" />
                </ContentTemplate>
            <Triggers>
                <asp:AsyncPostBackTrigger ControlID="FiveSeconds" EventName="Tick" />
            </Triggers>
        </asp:UpdatePanel>
        </form>
    </body>
    </html>
  • 相关阅读:
    类模板和函数模板
    vector用法
    the swap trick用于锐减过剩容量
    SIGHUP信号
    linux页表机制
    linux中sigsuspend和pause的区别
    最长回文串:LeetCode:Longest Palindromic Substring
    Implement strStr()
    ffmpeg知多少~~~
    下面可能会更新很多。。。
  • 原文地址:https://www.cnblogs.com/purplefox2008/p/1971474.html
Copyright © 2011-2022 走看看