| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 793 人关注过本帖
标题:GridView的分页问题(谢谢!)
取消只看楼主 加入收藏
fylnlx
Rank: 1
等 级:新手上路
帖 子:25
专家分:0
注 册:2009-3-15
结帖率:100%
收藏
已结贴  问题点数:20 回复次数:0 
GridView的分页问题(谢谢!)
this.Button1.Enabled = true;
        if (this.GridView1.PageIndex == 0)
        {
            this.Button1.Enabled = false;
        }
 protected void Button1_Click(object sender, EventArgs e)//上一页
    {
            this.GridView1.PageIndex = this.GridView1.PageIndex - 1;
            this.binding();
    }
protected void Button2_Click(object sender, EventArgs e)下一页
    {
        if (this.GridView1.PageCount > this.GridView1.PageIndex)
        {
            this.GridView1.PageIndex = this.GridView1.PageIndex+ 1;
            this.binding();//绑定
        }
        if (this.GridView1.PageCount == this.GridView1.PageIndex + 1)
        {
            this.Button2.Enabled = false;
        }
    }
为什么Button2的对着,点击Button1的时候不起作用??
搜索更多相关主题的帖子: GridView 
2009-07-14 18:07
快速回复:GridView的分页问题(谢谢!)
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.015886 second(s), 10 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved