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.Model; using CY.Infrastructure.Query; using CY.Infrastructure.Common; using CY.BLL.Sys; using CY.BLL.OA; namespace CY.WebForm.Pages.business { //吴辉 //打印意向客户资料 public partial class PrintInList : BasePage { OA_IntentionCustomerBLL bll_OA_IntentionCustomerBLL = null; public PrintInList() { bll_OA_IntentionCustomerBLL = new OA_IntentionCustomerBLL(); } protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { BindList(); } } private void BindList() { Pagination pa = new Pagination(); pa.PageSize = int.MaxValue; pa.PageIndex = 1; string Keyid = Request["Keyid"].ToString2().Trim(','); this.RepCustomerList.DataSource = bll_OA_IntentionCustomerBLL.SelectListListByCustomId(Keyid, CurrentUser.MemberId); this.RepCustomerList.DataBind(); } protected void btn_Register_Click(object sender, EventArgs e) { BindList(); } } }