• 一个简单的分页代码


        今天看了一下同事写的分页代码 虽然效率不高 但是比我的简单多了
    数据量小的首选(别忘了定义gridview的pagesize)
    protected void LinkButton1_Click(object sender, EventArgs e)
        {
            GridView1.PageIndex = 0;
            BusinessWork BusinessWork = new BusinessWork();
            DataTable dt = new DataTable();
            dt = BusinessWork.BusinessWorkDataTable("Archives_DakfGetAll");
            if (dt.Rows.Count > 0)
            {
                GridView1.DataSource = dt;
                GridView1.DataBind();
            }
        }
        protected void LinkButton2_Click(object sender, EventArgs e)
        {
            if (GridView1.PageIndex - 1 >= 0)
            {
                GridView1.PageIndex = GridView1.PageIndex - 1;
                BusinessWork BusinessWork = new BusinessWork();
                DataTable dt = new DataTable();
                dt = BusinessWork.BusinessWorkDataTable("Archives_DakfGetAll");
                if (dt.Rows.Count > 0)
                {
                    GridView1.DataSource = dt;
                    GridView1.DataBind();
                }
            }
        }
        protected void LinkButton3_Click(object sender, EventArgs e)
        {
            if (GridView1.PageIndex + 1 <= GridView1.PageCount)
            {
                GridView1.PageIndex = GridView1.PageIndex + 1;
                BusinessWork BusinessWork = new BusinessWork();
                DataTable dt = new DataTable();
                dt = BusinessWork.BusinessWorkDataTable("Archives_DakfGetAll");
                if (dt.Rows.Count > 0)
                {
                    GridView1.DataSource = dt;
                    GridView1.DataBind();
                }
            }
        }
        protected void LinkButton4_Click(object sender, EventArgs e)
        {
            GridView1.PageIndex = GridView1.PageCount;
            BusinessWork BusinessWork = new BusinessWork();
            DataTable dt = new DataTable();
            dt = BusinessWork.BusinessWorkDataTable("Archives_DakfGetAll");
            if (dt.Rows.Count > 0)
            {
                GridView1.DataSource = dt;
                GridView1.DataBind();
            }
        }
  • 相关阅读:
    张量自动求导和计算图
    34 深入浅出 x86 中断机制(下)
    33 深入浅出 x86 中断机制(上)
    使用STM32 PWM控制LCD背光
    32 获取物理内存容量 下
    ucGUI内存管理相关
    STM32 SPI双机通信参考
    IAR_UCOSII_UCOSIII
    每日总结
    每日总结
  • 原文地址:https://www.cnblogs.com/cuihongyu3503319/p/531460.html
Copyright © 2020-2023  润新知