prepay.aspx.cs

来自「会员管理系统」· CS 代码 · 共 79 行

CS
79
字号
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;

namespace com.sungoal.MemberManage.Web
{
	/// <summary>
	/// Summary description for PrePay.
	/// </summary>
	public class PrePay : System.Web.UI.Page
	{
		protected System.Web.UI.WebControls.Label lblTiltle;
		protected System.Web.UI.WebControls.TextBox txtUserID;
		protected System.Web.UI.WebControls.TextBox txtReadCardID;
		protected System.Web.UI.WebControls.TextBox txtReadCardPassword;
		protected System.Web.UI.WebControls.RequiredFieldValidator valUserID;
		protected System.Web.UI.WebControls.RequiredFieldValidator valReadCardID;
		protected System.Web.UI.WebControls.RequiredFieldValidator valReadCardPassword;
		protected System.Web.UI.WebControls.ValidationSummary ValSummary;
		protected System.Web.UI.WebControls.Label lblUserID;
		protected System.Web.UI.WebControls.Label lblReadCardID;
		protected System.Web.UI.WebControls.Label lblReadCardPassword;
		protected System.Web.UI.WebControls.Button btnPrePay;
		protected System.Web.UI.WebControls.Label lblUserPassword;
		protected System.Web.UI.WebControls.TextBox txtUserPassword;
		protected System.Web.UI.WebControls.RequiredFieldValidator valUserPassword;
		protected System.Web.UI.WebControls.Label lblPayMode;
		protected System.Web.UI.WebControls.RadioButton rbMonth;
		protected System.Web.UI.WebControls.RadioButton rbYear;
		protected System.Web.UI.WebControls.Button btnReturn;
	
		private void Page_Load(object sender, System.EventArgs e)
		{
			// Put user code to initialize the page here
		}

		#region Web Form Designer generated code
		override protected void OnInit(EventArgs e)
		{
			//
			// CODEGEN: This call is required by the ASP.NET Web Form Designer.
			//
			InitializeComponent();
			base.OnInit(e);
		}
		
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{    
			this.btnPrePay.Click += new System.EventHandler(this.btnPrePay_Click);
			this.btnReturn.Click += new System.EventHandler(this.btnReturn_Click);
			this.Load += new System.EventHandler(this.Page_Load);

		}
		#endregion

		
		//充值,先验证用户名、帐号,阅读卡、阅读卡密码信息,成功后更新用户余额和截止时间,同时将阅读卡置为不可用。
		private void btnPrePay_Click(object sender, System.EventArgs e)
		{
		
		}

		private void btnReturn_Click(object sender, System.EventArgs e)
		{
		}
	}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?