Example #1
0
        /// <summary>
        /// 绑定
        /// </summary>
        public void Bind()
        {
            int currentpage = Convert.ToInt32(Request["CurrentPage"]);
            int check = 1;
            currentpage = (currentpage < 1) ? 1 : currentpage;
            if (this.Pager1.CurrentIndex > 0)
            {
                currentpage = this.Pager1.CurrentIndex;
            }
            int pageSize = this.Pager1.PageSize;

            QPS.NEW.BLL.Users user = new QPS.NEW.BLL.Users();

            ds = user.SelectUs(pageSize,currentpage);
            dgExamProj.DataSource = ds;
            this.Pager1.ItemCount = user.GetCount();
            dgExamProj.DataBind();

        }
Example #2
0
        /// <summary>
        /// 绑定
        /// </summary>
        public void Bind()
        {
            int currentpage = Convert.ToInt32(Request["CurrentPage"]);
            int check       = 1;

            currentpage = (currentpage < 1) ? 1 : currentpage;
            if (this.Pager1.CurrentIndex > 0)
            {
                currentpage = this.Pager1.CurrentIndex;
            }
            int pageSize = this.Pager1.PageSize;

            QPS.NEW.BLL.Users user = new QPS.NEW.BLL.Users();

            ds = user.SelectUs(pageSize, currentpage);
            dgExamProj.DataSource = ds;
            this.Pager1.ItemCount = user.GetCount();
            dgExamProj.DataBind();
        }