cargo_send.aspx.cs

来自「网站开发与实例,提供完整的电子商务网站源代码。」· CS 代码 · 共 45 行

CS
45
字号
using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;

public partial class Chauffeur_send : System.Web.UI.Page 
{
    protected void Page_Load(object sender, EventArgs e)
    {

    }

    protected void Button1_Click(object sender, EventArgs e)
    {
        if (Page.IsValid == true)
        {
            SqlConnection strcon = new SqlConnection(System.Configuration.ConfigurationManager.AppSettings["strcon"]);
            strcon.Open();
            string CargoName = this.CargoName.Text.ToString();
            string CargoWeight = this.CargoWeight.Text.ToString();
            string CargoPrice = this.CargoPrice.Text.ToString();
            string CargoDate = this.CargoDate.Text.ToString();
            string Start = this.Start.Text.ToString();
            string Whither = this.Whither.Text.ToString();
            string Linkman = this.Linkman.Text.ToString();
            string Tel = this.Tel.Text.ToString();
            string EffectDate = this.EffectDate.Text.ToString();
            string Bewrite = this.Bewrite.Text.ToString();
            string Username = Session["username"].ToString();
            string CargoNow = Convert.ToString(DateTime.Now);
            SqlCommand cmd = new SqlCommand("insert into tb_Cargo (CargoName,CargoWeight,CargoPrice,CargoDate,Start,Whither,Linkman,Tel,EffectDate,Bewrite,CargoNow,username)values('" + CargoName + "','" + CargoWeight + "','" + CargoPrice + "','" + CargoDate + "','" + Start + "','" + Whither + "','" + Linkman + "','" + Tel + "','" + EffectDate + "','" + Bewrite + "','" + CargoNow + "','" + Username + "')", strcon);
            cmd.ExecuteNonQuery();
            strcon.Close();
            Response.Write("<script language=javascript>alert('恭喜您,添加成功!等待审核!')</script>");
        }
        
    }
}

⌨️ 快捷键说明

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