private void RptBind(string _strWhere, string _orderby) { this.page = DTRequest.GetQueryInt("page", 1); if (!string.IsNullOrEmpty(_carNumber)) { ddlCarNumber.SelectedValue = _carNumber; } //if (!string.IsNullOrEmpty(_customer1)) //{ // ddlCustomer1.SelectedValue = _customer1; //} //if (!string.IsNullOrEmpty(_customer2)) //{ // ddlCustomer2.SelectedValue = _customer2; //} this.txtKeywords.Text = this.keywords; BLL.TransportOrder bll = new BLL.TransportOrder(); this.rptList.DataSource = bll.GetTransportOrdersAndDriver(this.pageSize, this.page, _strWhere, _orderby, out this.totalCount); this.rptList.DataBind(); //绑定页码 txtPageNum.Text = this.pageSize.ToString(); string pageUrl = Utils.CombUrlTxt("receipt_register_list.aspx", "carNumber={0}&customer1={1}&customer2={2}&keywords={3}&page={4}", _carNumber, _customer1, _customer2, this.keywords, "__id__"); PageContent.InnerHtml = Utils.OutPageList(this.pageSize, this.page, this.totalCount, pageUrl, 8); }