Esempio n. 1
0
        private void RptBind(string _order)
        {
            var bll = new BLL.CCOM.Reply_student();
            //计算数量
            int totalCount = bll.GetRecordCount(" Group_id=" + apply_id);

            //绑定当页
            this.rptList.DataSource = bll.GetList(" Group_id=" + apply_id);
            this.rptList.DataBind();

            string pageUrl = Utils.CombUrlTxt("StudentList.aspx", "fun_id={0}&groupid={1}", MyRequest.GetQueryString("fun_id"), MyRequest.GetQueryString("groupid"));
        }