zoukankan      html  css  js  c++  java
  • gridview自动换页

    每隔5秒自动换页(适用于数据量小的表)

    <%@ Page Language="C#" AutoEventWireup="true" CodeFile="test.aspx.cs" Inherits="test" %>

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

    <html xmlns="http://www.w3.org/1999/xhtml">
    <head runat="server">
        <title></title>
    </head>
    <body>
        <form id="form1" runat="server">
         <table class="infotable">
                  <tr>
                <td>
                 <asp:ScriptManager ID="ScriptManager1" runat="server">
                </asp:ScriptManager>
                <asp:UpdatePanel ID="UpdatePanel1" runat="server">
                    <ContentTemplate>
                        <asp:GridView ID="gvValueList" runat="server">
                        </asp:GridView>
                    </ContentTemplate>
                    <Triggers>
                        <asp:AsyncPostBackTrigger ControlID="Timer1" EventName="Tick" />
                    </Triggers>
                </asp:UpdatePanel>
                   </td>
            </tr>
        </table>
         <asp:Timer ID="Timer1" runat="server" Interval="5000" OnTick="Timer1_Tick">
            </asp:Timer>
        </form>
    </body>

    </html> 

      protected void Timer1_Tick(object sender, EventArgs e)

        {
            if (this.gvValueList.PageCount > 1)
            {
                if (this.gvValueList.PageIndex == this.gvValueList.PageCount - 1)
                {
                    //Response.Redirect("default2.aspx");
                    //自动转到第一页
                   this.gvValueList.PageIndex = 0;
                    fun.GVDataInit(bllsql.SelOverallPJSituation, gvValueList);//绑定GV
                }
                else
                {
                    this.gvValueList.PageIndex = this.gvValueList.PageIndex + 1;
                    fun.GVDataInit(bllsql.SelOverallPJSituation, gvValueList);
                }
            }
        }
  • 相关阅读:
    演练:创建和使用托管程序集 (C++)
    QT中各种MessageBox的使用
    QT使用打印机
    常用数据结构算法 c++模板实现
    创建可重用代码(C++)
    演练:创建和使用动态链接库 (C++)
    一些面试题,整理自网络,就不一一帖原址了
    《实践与思考》系列连载(4)——众说纷纭“架构师”
    XML Web Service并发异步调用的问题及其解决方案
    《实践与思考》书籍连载系列反馈区
  • 原文地址:https://www.cnblogs.com/Snowfun/p/3071128.html
Copyright © 2011-2022 走看看