Esempio n. 1
0
 private void bindGrid()
 {
     CustomerManageBIZ biz = new CustomerManageBIZ();
     this.ProPageToolBar1.AllCount = biz.GetContactInfoCount();
     this.GridView1.DataSource = biz.GetContactInfoList(this.ProPageToolBar1.PageSize, 1, this.ProPageToolBar1.AllCount);
     this.GridView1.DataBind();
 }
Esempio n. 2
0
 protected void ProPageToolBar1_PageChangeIndex(object sender, EventArgs e)
 {
     CustomerManageBIZ biz = new CustomerManageBIZ();
     this.ProPageToolBar1.AllCount = biz.GetContactInfoCount();
     this.GridView1.DataSource = biz.GetContactInfoList(
         this.ProPageToolBar1.PageSize, 
         this.ProPageToolBar1.CurrentPage, 
         this.ProPageToolBar1.AllCount);
     this.GridView1.DataBind();
 }