예제 #1
0
 private void RptBind(string strWhere)
 {
     DtCms.BLL.Societies bll = new DtCms.BLL.Societies();
     //获得总条数
     this.pcount = bll.GetCount(strWhere);
     if (this.pcount > 0)
     {
         this.lbtnDel.Enabled = true;
     }
     else
     {
         this.lbtnDel.Enabled = false;
     }
     this.rptList.DataSource = bll.GetPageList(this.pagesize, this.page, strWhere, "AddTime desc");
     this.rptList.DataBind();
 }
예제 #2
0
        protected void Societies_List_DataBind(object sender, EventArgs e)
        {
            Repeater _rpt = sender as Repeater;

            if (_rpt == null)
            {
                return;
            }
            DtCms.BLL.Societies bll = new DtCms.BLL.Societies();
            //绑定数据
            if (_rpt.PageSize > 0)
            {
                _rpt.DataSource = bll.GetPageList(_rpt.PageSize, _rpt.PageIndex, _rpt.Where, "AddTime desc");
            }
            else
            {
                _rpt.DataSource = bll.GetList(_rpt.Top, _rpt.Where, "AddTime desc");
            }
            _rpt.DataBind();
        }