using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using CY.BLL; using CY.BLL.Sys; using CY.Model; using CY.Infrastructure.Query; using CY.Infrastructure.Common; using System.Data; namespace CY.WebForm.Pages.workcar { //吴辉 //打印车辆交接记录 public partial class CarTransferPrintTable : BasePage { OA_CarTransferBll bll_OA_CarTransferBll = null; //初始化 public CarTransferPrintTable() { bll_OA_CarTransferBll = new OA_CarTransferBll(); } //页面加载 protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { BindList(); } } //绑定数据 private void BindList() { this.RepClientList.DataSource = bll_OA_CarTransferBll.SelectModelList(Request["keyids"].ToString2().Trim(',')); this.RepClientList.DataBind(); } } }