UserOrder.aspx.cs
上传用户:shjujing
上传日期:2022-07-28
资源大小:11244k
文件大小:2k
源码类别:

Email客户端

开发平台:

Visual C++

  1. using System;
  2. using System.Data;
  3. using System.Configuration;
  4. using System.Collections;
  5. using System.Web;
  6. using System.Web.Security;
  7. using System.Web.UI;
  8. using System.Web.UI.WebControls;
  9. using System.Web.UI.WebControls.WebParts;
  10. using System.Web.UI.HtmlControls;
  11. public partial class UserOrder : PageBase
  12. {
  13.     classDB dd = new classDB();
  14.     protected void Page_Load(object sender, EventArgs e)
  15.     {
  16.         if (Session["Login"] == null)
  17.         {
  18.             Response.Redirect("Login.aspx");
  19.         }
  20.         else
  21.         {
  22.             String oid = Session["Login"].ToString();
  23.             if (dd.IsCartNO(oid) == 0)
  24.             {
  25.                 Response.Redirect("produce.aspx");
  26.                 Response.Write("<script>window.location.reload()</script>");
  27.             }
  28.         }
  29.     }
  30.     protected void Button1_Click(object sender, EventArgs e)
  31.     {
  32.         classDB db = new classDB();
  33.         String totalPrice = Session["totalPrice"].ToString();
  34.         String totalNumber = Session["totalNumber"].ToString();
  35.         String UID = Session["Login"].ToString();
  36.         String name = TextBox2.Text.Trim();
  37.         String postid = TextBox3.Text.Trim();
  38.         String address = TextBox1.Text.Trim();
  39.         String movePhone = TextBox4.Text.Trim();
  40.         String homePhone = TextBox5.Text.Trim();
  41.         String email = TextBox6.Text.Trim();
  42.         if (db.InsertUser(UID, int.Parse(totalNumber), float.Parse(totalPrice)) != -1)
  43.         {
  44.             Response.Write("<script>alert('定单成功')</script>");
  45.         }
  46.         else
  47.         {
  48.             Response.Redirect("Default.aspx");
  49.         }
  50.         if (db.InsertOrderInformation(UID, name, postid, address, movePhone, homePhone, email) != -1)
  51.         {
  52.             Response.Write("<script>alert('用户信息成功')</script>");
  53.         }
  54.         else
  55.         {
  56.             Response.Redirect("Default.aspx");
  57.         }
  58.         if (db.CopypCart(UID) != -1)
  59.         {
  60.             ;
  61.         }
  62.         if (db.DeleteCart(UID) != -1)
  63.         {
  64.             Response.Redirect("suc.aspx");
  65.         }
  66.     }
  67. }