username@email.com
2025-01-17 db32c8221ae179f6b20cc62467200c0681d10f61
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
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 PrintCorList : BasePage
    {
        OA_CorporateClientsBLL bll_OA_CorporateClientsBLL = null;
 
        public PrintCorList()
        {
            bll_OA_CorporateClientsBLL = new OA_CorporateClientsBLL();
        }
 
        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_CorporateClientsBLL.SelectListListByCustomId(Keyid, CurrentUser.MemberId);
            this.RepCustomerList.DataBind();
        }
 
        protected void btn_Register_Click(object sender, EventArgs e)
        {
            BindList();
        }
    }
}