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>
  • 相关阅读:
    [leetCode]127. 单词接龙
    [leetCode]450. 删除二叉搜索树中的节点
    [leetCode]701. 二叉搜索树中的插入操作
    [leetCode]235. 二叉搜索树的最近公共祖先
    [leetCode]501. 二叉搜索树中的众数
    $Abstract^2 Interpretation$
    图说 Python 内存管理
    Python 解释器初探
    幸福之路
    Spark编程基础
  • 原文地址:https://www.cnblogs.com/purplefox2008/p/1971474.html
Copyright © 2011-2022 走看看