如何在C#中使用mongodb进行datagridview分页?或没有数据库怎么做分页?

时间:2018-08-28 06:04:25

标签: c# mongodb datagridview windows-forms-designer

我在这里尝试了代码,但是没有用    私有void btn_next_Click(对象发送者,EventArgs e)         {

        scr_val = scr_val - 5;
        if(scr_val<=0)
        {
            scr_val = 0;

        }
        MongoClient t= new MongoClient();


        if (this.CurrentPageIndex < this.TotalPage)
        {
            this.CurrentPageIndex++;
            this.dataGridView1.DataSource =
        Results(this.CurrentPageIndex);
        }
    }

谢谢

0 个答案:

没有答案