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.OA;
|
|
namespace CY.WebForm.Pages.business
|
{
|
//吴辉
|
//打印合作客户A表
|
public partial class PrintCorATable : BasePage
|
{
|
OA_CorporateClientsBLL bll_OA_CorporateClientsBLL = null;
|
|
public PrintCorATable()
|
{
|
bll_OA_CorporateClientsBLL = new OA_CorporateClientsBLL();
|
}
|
|
protected void Page_Load(object sender, EventArgs e)
|
{
|
if (!IsPostBack)
|
{
|
BindList();
|
}
|
}
|
|
/// <summary>
|
/// 加载全部数据
|
/// </summary>
|
private void BindList()
|
{
|
Pagination pa = new Pagination();
|
pa.PageSize = int.MaxValue;
|
pa.PageIndex = 1;
|
this.RepCustomerList.DataSource = bll_OA_CorporateClientsBLL.SelectListListByCustomId(Request["Keyid"].ToString2().Trim(','), CurrentUser.MemberId);
|
this.RepCustomerList.DataBind();
|
}
|
|
protected void btn_Register_Click(object sender, EventArgs e)
|
{
|
BindList();
|
}
|
|
}
|
}
|