我在这里尝试了代码,但是没有用 私有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);
}
}
谢谢