• 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>
  • 相关阅读:
    增强学习--值迭代
    makefile opencv的案例
    shiro拦截器处理链执行顺序
    HTTP头字段总结
    IntelliJ IDEA上创建Maven Spring MVC项目
    使用deploy命令发布jar到私服仓库nexus
    JAVA设计模式之单例模式
    java基础-I/O系统
    HTTP深入浅出 http请求
    HTTP Header 详解
  • 原文地址:https://www.cnblogs.com/purplefox2008/p/1971474.html
Copyright © 2020-2023  润新知