//Gridview翻页 protected void Grid_EquipSpare_PageIndexChanging(object sender, GridViewPageEventArgs e) { GridView theGrid = sender as GridView; // refer to the GridView int newPageIndex = 0; if (-2 == e.NewPageIndex) { TextBox txtNewPageIndex = null; GridViewRow pagerRow = Grid_EquipSpare.BottomPagerRow; if (null != pagerRow) { txtNewPageIndex = (TextBox)pagerRow.FindControl("textbox"); // refer to the TextBox with the NewPageIndex value } if (null != txtNewPageIndex && txtNewPageIndex.Text != "") { newPageIndex = int.Parse(txtNewPageIndex.Text) - 1; // get the NewPageIndex } } else { newPageIndex = e.NewPageIndex; } string condition = GetCondition(); BindGrid_EquipSpare(condition); newPageIndex = newPageIndex < 0 ? 0 : newPageIndex; newPageIndex = newPageIndex >= Grid_EquipSpare.PageCount ? Grid_EquipSpare.PageCount - 1 : newPageIndex; Grid_EquipSpare.PageIndex = newPageIndex; Grid_EquipSpare.DataBind(); }
//模糊查询,绑定备件表 private void BindGrid_EquipSpare(string condition) { Grid_EquipSpare.DataSource = equipNameModelL.Search_EquipFreqUsedSpareInfo(condition); Grid_EquipSpare.DataBind(); }