在C#Gridview中搜索

时间:2012-04-29 17:45:39

标签: c# asp.net gridview

我有一个网格视图,显示我保存的所有数据。当我点击日期搜索按钮时,数据绑定在我在文本框中键入的特定日期的网格视图中。但是当我尝试通过单击网格视图寻呼机按钮进入下一页时,网格视图日期绑定了保存日期的所有页面。它不是特定日期的绑定数据。请帮帮我......

1 个答案:

答案 0 :(得分:2)

您可以按照以下方式实施PageIndexChanging

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();
}