예제 #1
0
    protected void Gridview5_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        = Gridview5.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_Material();

        BindGridview5(condition);
        Gridview5.DataBind();
        newPageIndex        = newPageIndex < 0 ? 0 : newPageIndex;
        newPageIndex        = newPageIndex >= Gridview5.PageCount ? Gridview5.PageCount - 1 : newPageIndex;
        Gridview5.PageIndex = newPageIndex;
        Gridview5.DataBind();
    }
예제 #2
0
 //绑定物料表
 private void BindGridview5(string condition)
 {
     Gridview5.DataSource = pll.SelectPMPurchaseSMaterial(condition);
     Gridview5.DataBind();
 }