⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 createnewaccount.aspx.cs

📁 PetShop实现的是一个网上购物的系统功能
💻 CS
字号:
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;
using System.Web.Security;
using PetShop.Components;

namespace PetShop.Web {
	/// <summary>
	/// Create a new user account.
	/// </summary>
	public partial class CreateNewAccount : System.Web.UI.Page {

		#region Web Form Designer generated code
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent() {    
			this.btnSubmit.Click += new System.Web.UI.ImageClickEventHandler(this.btnSubmit_Click);

		}
		#endregion

		public CreateNewAccount() {
			Page.Init += new System.EventHandler(Page_Init);
		}

		protected void Page_Load(object sender, System.EventArgs e) {
			if (!IsPostBack)
				PopulateListView();
		}

		protected void Page_Init(object sender, EventArgs e) {
			//
			// CODEGEN: This call is required by the ASP.NET Web Form Designer.
			//
			InitializeComponent();
		}

		// create the account
		private string CreateAccount() {
			Customer customer = new Customer();
			string retval = customer.Add(txtUserName.Text, txtPassword.Text, txtEmail.Text, txtFirstName.Text, 
				txtLastName.Text, txtAddress1.Text, txtAddress2.Text, 
				txtCity.Text, listState.SelectedItem.Text, txtPostalCode.Text,
				listCountry.SelectedItem.Text, txtTelephoneNumber.Text, 
				listLanguagePref.SelectedItem.Text, 
				listFavoriteCategory.SelectedItem.Value, 
				(cbShowMyList.Checked==true) ? 1 : 0, 
				(cbShowBanners.Checked==true) ? 1 : 0);	

			return(retval);
		}
       
		// init list items
		private void PopulateListView() {
			listState.Items.Clear();
			listState.Items.Add(new ListItem("California", "California"));
			listState.Items.Add(new ListItem("New York", "New York"));
			listState.Items.Add(new ListItem("Texas", "Texas"));

			listCountry.Items.Clear();
			listCountry.Items.Add(new ListItem("USA", "USA"));
			listCountry.Items.Add(new ListItem("Canada", "Canada"));
			listCountry.Items.Add(new ListItem("Japan", "Japan"));

			listLanguagePref.Items.Clear();
			listLanguagePref.Items.Add(new ListItem("English", "English"));
			listLanguagePref.Items.Add(new ListItem("Japanese", "Japanese"));

			listFavoriteCategory.Items.Clear();
			listFavoriteCategory.Items.Add(new ListItem("Birds", "Birds"));
			listFavoriteCategory.Items.Add(new ListItem("Cats", "Cats"));
			listFavoriteCategory.Items.Add(new ListItem("Dogs", "Dogs"));
			listFavoriteCategory.Items.Add(new ListItem("Fish", "Fish"));
			listFavoriteCategory.Items.Add(new ListItem("Reptiles", "Reptiles"));

			SelectListItem(listState, "California");
			SelectListItem(listCountry, "USA");
			SelectListItem(listLanguagePref, "English");
			SelectListItem(listFavoriteCategory, "birds");
		}

		// select specified dropdown list item
		private void SelectListItem(DropDownList list, string text) {
			try {
				list.Items.FindByText(text).Selected = true;
			}
			catch {
			}
		}

		// submit button clicked
		private void ProcessNewAccount() {
			// make sure all fields are valid
			if (Page.IsValid == true) {
				// create the new account
				string retval = CreateAccount();
				if (retval != null) {
					// store our customer session id in a cookie
					HttpCookie customerCookie = new HttpCookie("CustomerID", txtUserName.Text);
					Response.Cookies.Add(customerCookie);

					// set the user's authentication name to the user id
					FormsAuthentication.SetAuthCookie(txtUserName.Text, false);

					Response.Redirect("ValidateAccount.aspx?action=createAccount");
				}
				else
					Response.Redirect("ValidateAccount.aspx?action=duplicateAccount");
			}
		}

		private void btnSubmit_Click(object sender, System.Web.UI.ImageClickEventArgs e) {
			ProcessNewAccount();
		}

		

	}
}

⌨️ 快捷键说明

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