我有一个网格视图,它显示了我保存的所有数据。当我单击日期搜索按钮时,数据会绑定在我在文本框中键入的特定日期的网格视图中。但是,当我尝试通过单击网格视图寻呼机按钮进入下一页时,网格视图日期会绑定保存日期的所有页面。它不是那个特定日期的绑定数据。请帮我...
问问题
454 次
1 回答
2
you can implement PageIndexChanging
as below.
protected void GridViewExtUsers1_PageIndexChanging(object sender, GridViewPageEventArgs e)
{
// Set the index of the new display page.
GridView1.PageIndex = e.NewPageIndex;
// Rebind the GridView control
// if on search mode bind search results
// otherwise bind all data.
// implement your logic in different method
BindGridView();
}
于 2012-04-29T18:05:03.373 回答