Exemplo n.º 1
0
 private void bindGrid()
 {
     GoodsManageBIZ biz = new GoodsManageBIZ();
     this.ProPageToolBar1.AllCount = biz.GetAllGoodsBaseInfoCount();
     this.GridView1.DataSource = biz.GetGoodsBaseInfoList(this.ProPageToolBar1.PageSize, 1, this.ProPageToolBar1.AllCount);
     this.GridView1.DataBind();
 }
Exemplo n.º 2
0
        protected void Page_Load(object sender, EventArgs e)
        {
            if (!IsPostBack)
            {
                GoodsManageBIZ biz = new GoodsManageBIZ();

                this.ProPageToolBar1.PageSize = 5;
                this.ProPageToolBar1.AllCount = biz.GetAllGoodsBaseInfoCount();

                this.GridView1.DataSource = biz.GetGoodsBaseInfoList(this.ProPageToolBar1.PageSize, 1, this.ProPageToolBar1.AllCount);
                this.GridView1.DataBind();
            }
        }
Exemplo n.º 3
0
 protected void ProPageToolBar1_PageChangeIndex(object sender, EventArgs e)
 {
     GoodsManageBIZ biz = new GoodsManageBIZ();
     this.GridView1.DataSource = biz.GetGoodsBaseInfoList(
         this.ProPageToolBar1.PageSize, 
         this.ProPageToolBar1.CurrentPage,
         this.ProPageToolBar1.AllCount );
     this.GridView1.DataBind();
 }