Exemplo n.º 1
0
    //Gridview翻页
    protected void Grid_EquipInfo_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_EquipInfo.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_EquipInfo(condition);
        newPageIndex             = newPageIndex < 0 ? 0 : newPageIndex;
        newPageIndex             = newPageIndex >= Grid_EquipInfo.PageCount ? Grid_EquipInfo.PageCount - 1 : newPageIndex;
        Grid_EquipInfo.PageIndex = newPageIndex;
        Grid_EquipInfo.DataBind();
    }
Exemplo n.º 2
0
 //绑定设备台账gridview
 private void BindGrid_EquipInfo(string condition)
 {
     Grid_EquipInfo.DataSource = equipmentInfL.Search_EquipmentInfInfo(condition);
     Grid_EquipInfo.DataBind();
 }