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
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;
 
namespace CY.WebForm.Pages.pay
{
    //吴辉
    //新增/修改银行卡信息
    public partial class BankInfoDetail : BasePage
    {
        Pay_BankInfoBLL bll_Pay_BankInfoBLL = null;
 
        //初始化
        public BankInfoDetail()
        {
            bll_Pay_BankInfoBLL = new Pay_BankInfoBLL();
        }
 
        //页面加载
        protected void Page_Load(object sender, EventArgs e)
        {
            if (!IsPostBack)
            {
                if (Request["Keyid"] != null)
                {
                    Pay_BankInfo m_Pay_BankInfo = bll_Pay_BankInfoBLL.GetModel(Request["Keyid"].ToInt32());
                    this.spanBankName.InnerText = m_Pay_BankInfo.BankName.ToString2();
                    this.spanBankNum.InnerText = m_Pay_BankInfo.BankNum.ToString2();
                    this.spanCardholder.InnerText = m_Pay_BankInfo.Cardholder.ToString2();
                    this.spanOperator.InnerText = m_Pay_BankInfo.Operator.ToString2();
                    this.spanLastUpdateTime.InnerText = m_Pay_BankInfo.LastUpdateTime.ToString2();
                }
            }
        }
 
    }
}