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