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(); } } } } }