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 DealMvc.Pay.Tenpay;
|
|
namespace CY.WebForm.Pages.pay
|
{
|
//吴辉
|
//充值
|
public partial class Recharge : BasePage
|
{
|
Pay_AccountedRecordBLL bll_Pay_AccountedRecordBLL = null;
|
Sys_DictionaryBLL bll_Sys_DictionaryBLL = null;
|
DateTime nowTime = new DateTime();
|
//初始化
|
public Recharge()
|
{
|
bll_Pay_AccountedRecordBLL = new Pay_AccountedRecordBLL();
|
bll_Sys_DictionaryBLL = new Sys_DictionaryBLL();
|
nowTime = DateTime.Now;
|
}
|
|
//页面加载
|
protected void Page_Load(object sender, EventArgs e)
|
{
|
if (!IsPostBack)
|
{
|
this.lblBankofdeposit.Text = CY.Config.WebInfo.Instance.Bankofdeposit;
|
this.lblAccountName.Text = CY.Config.WebInfo.Instance.AccountName;
|
this.lblAccountNum.Text = CY.Config.WebInfo.Instance.AccountNum;
|
}
|
}
|
}
|
}
|