博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
datalist 分页
阅读量:4978 次
发布时间:2019-06-12

本文共 1954 字,大约阅读时间需要 6 分钟。

private void indexListBind()

    {

        try

        {

            string parID = Request.QueryString["id"].ToString();

            int curPage = Convert.ToInt32(this.lb_pageIndex.Text) - 1;//获取当前页码,我用的是一个lable.当了中间变量

            con = Admin_DB.getConn();

            con.Open();

            DataSet ds = new DataSet();

            string Path = "~";

            OleDbDataAdapter sda = new OleDbDataAdapter("select ID,'" + Path + "'+imagePath as imagePath,introduce from D_Picture where parID=@parID", con);

            sda.SelectCommand.Parameters.Add(new OleDbParameter("@parID", parID));

            sda.Fill(ds, "index");

            System.Web.UI.WebControls.PagedDataSource ps = new PagedDataSource();//实例化分页数据源

            ps.DataSource = ds.Tables["index"].DefaultView;//将要绑定在datalist上的datatable给分页数据源

            ps.AllowPaging = true;

            ps.PageSize = 8;//每页显示几条记录

            ps.CurrentPageIndex = curPage;//设置当前页的索引(当前页码减1就是)

            this.btn_up.Enabled = true;

            this.btn_next.Enabled = true;

            this.btn_frist.Enabled = true;

            this.btn_end.Enabled = true;

            endPage = ps.PageCount;

            if (curPage == 0)//当是第一页是.上一页和首页的按钮不可用

            {

                this.btn_up.Enabled = false;

                this.btn_frist.Enabled = false;

            }

            if (curPage == ps.PageCount - 1)//当是最后一页时下一页和最后一页的按钮不可用

            {

                this.btn_next.Enabled = false;

                this.btn_end.Enabled = false;

            }

            this.indexList.DataSource = ps;

            this.indexList.DataKeyField = "ID";

            this.indexList.DataBind();

            con.Close();

        }

        catch (Exception ex)

        {

            Console.WriteLine(ex.Message);

        }

 

    }

    protected void btn_frist_Click(object sender, EventArgs e)

    {

        this.lb_pageIndex.Text = "1";

        this.indexListBind();

    }

    protected void btn_up_Click(object sender, EventArgs e)

    {

        int page = int.Parse(this.lb_pageIndex.Text) - 1;

        this.lb_pageIndex.Text = page.ToString();

        this.indexListBind();

    }

    protected void btn_next_Click(object sender, EventArgs e)

    {

        int page = int.Parse(this.lb_pageIndex.Text) + 1;

        this.lb_pageIndex.Text = page.ToString();

        this.indexListBind();

    }

    protected void btn_end_Click(object sender, EventArgs e)

    {

        this.lb_pageIndex.Text = endPage.ToString();

        this.indexListBind();

}

转载于:https://www.cnblogs.com/Miton/archive/2011/06/01/2066069.html

你可能感兴趣的文章
Windows 窗体启动和关闭的事件顺序
查看>>
jrebel使用
查看>>
SQL SERVER分区具体例子详解
查看>>
状态机实践入门
查看>>
类模板
查看>>
在 JQuery Mobile 中实现瀑布流图库布局
查看>>
Android最佳性能实践(一)——合理管理内存
查看>>
js对象取值的两种方式
查看>>
软件绿色版和安装版的区别
查看>>
HeapSpray初窥(2014.12)
查看>>
hdu5437 优先队列 长春网赛
查看>>
每日模板一练——树链剖分求LCA(好吧是真的写错了)
查看>>
常用图像数据集:标注、检索
查看>>
python基础补漏-02-collection
查看>>
场景设计(二)-----组合场景设计
查看>>
找到的一些SQLite3的int和二进制数据的插入、读取操作。
查看>>
PHP 程序员的技术成长规划(转载)
查看>>
springboot使用jdbcTemplate连接数据库
查看>>
iOS中XMPP简单聊天实现 好友和聊天
查看>>
面试时如何优雅的谈论OC
查看>>