计算机毕业设计用户订单功能介绍:
4.7 用户订单
此模块是用户将购物车里面的材料生成订单给管理员,等待确认操作。
以下是引用片段:
核心代码如下: protected void Page_Load(object sender, EventArgs e) { // 在此处放置用户代码以初始化页面 if (!Page.IsPostBack) { DataTable tmpda = new DataTable(); tmpda = DataBase.Get_Table("select * from gwcxx,spxx where gwcxx.spbh=spxx.spbh and gwcxx.hydlm='" + UserID"].ToString() + "'"); this.GridView1.DataSource = tmpda; this.GridView1.DataBind(); this.GridView1.Columns[1].Visible = false; tmpda = DataBase.Get_Table("select * from hyxx where hydlm='" + Session["UserID"].ToString() + "'"); if (tmpda.Rows.Count > 0) { this.TextBox5.Text = tmpda.Rows[0]["ljycj"].ToString(); } //从数据库中计算出购物车中当前人员的总数量和总金额 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.TextBox3.Text = tmpda.Rows[0][0].ToString(); this.TextBox4.Text = tmpda.Rows[0][1].ToString(); } //初始化显示控件内容 this.TextBox1.Text = Guid.NewGuid().ToString(); this.TextBox2.Text = Session["UserID"].ToString(); this.TextBox6.Text = DateTime.Now.Date.ToShortDateString(); this.LinkButton2.Attributes.", "return confirm('订单生成以后只能等待确认,您不能再继续操作,是否确认生成订单?');"); } } |
〖资料来源:计算机毕业论文 www.xiaoniu168.com〗
第12页为计算机毕业论文参考文献......