计算机毕业设计用户注册功能介绍:
4.5 用户注册
此模块主要是提供新用户信息注册。用户注册信息时,判断帐号,真实姓名等是否为空,输入的密码和确认密码是否一致。然后输入密码、确认密码、联系电话、家庭地址、出生日期等,注册和返回操作。
以下是引用片段:
代码如下: DataBase.ExecSql("insert into hyxx(hydlm,mm,xb,xm,dz,dh,sr,Email,sfzh) " + " values('" + this.TextBox1.Text.Trim() + "','" + this.Textbox5.Text.Trim() + "','" + this.txtxb.SelectedValue + "', " + " '" + this.Textbox2.Text.Trim() + "','" + this.TextBox3.Text.Trim() + "'," + " '" + this.TextBox4.Text.Trim() + "','" + this.Textbox7.Text.Trim() + "'," + " '" + this.Textbox8.Text + "','" + Textbox10.Text.Trim() + "')");
|
4.6 购物车
此模块显示已经选择完但未生成订单的材料信息列表,显示此次购物的总数量和总金额。可以对其生成定单,删除操作。
以下是引用片段:
核心代码如下: //将购物车的当前人员的数据显示在当前列表中 DataTable tmpda = new DataTable(); tmpda = DataBase.Get_Table("select * from gwcxx,spxx where gwcxx.spbh=spxx.spbh and gwcxx.hydlm='" + Session["UserID"].ToString() + "'"); if (tmpda.Rows.Count < 1) tmpda.Rows.Add(tmpda.NewRow()); this.GridView1.DataSource = tmpda; this.GridView1.DataBind(); //从数据库中计算出购物车中当前人员的总数量和总金额 tmpda = DataBase.Get_Table("select sum(gwcxx.sl),sum(gwcxx.sl * spxx.spjg) from gwcxx,spxx where gwcxx.spbh=spxx.spbh and gwcxx.hydlm='" + Session["UserID"].ToString() + "'"); if (tmpda.Rows.Count > 0) { this.Label2.Text = tmpda.Rows[0][0].ToString(); this.Label1.Text = tmpda.Rows[0][1].ToString(); }
|
〖资料来源:计算机毕业论文 www.xiaoniu168.com〗
第11页为计算机毕业论文用户订单功能介绍......