Beispiel #1
0
        protected void btnAdd_Click(object sender, EventArgs e)
        {
            if (this.FormCheck())
            {
                try
                {
                    string ComName       = this.txtComName.Text;
                    string NaShuiNo      = this.txtNaShuiNo.Text;
                    string Address       = this.txtAddress.Text;
                    string ComBrand      = this.txtComBrand.Text;
                    string InvoHeader    = this.txtInvoHeader.Text;
                    string InvContactPer = this.txtInvContactPer.Text;
                    string InvAddress    = this.txtInvAddress.Text;
                    string InvTel        = this.txtInvTel.Text;
                    string NaShuiPer     = this.txtNaShuiPer.Text;
                    string brandNo       = this.txtbrandNo.Text;
                    string ComTel        = this.txtComTel.Text;
                    string ComChuanZhen  = this.txtComChuanZhen.Text;
                    string ComBusTel     = this.txtComBusTel.Text;

                    VAN_OA.Model.BaseInfo.tb_ComInfo model = new VAN_OA.Model.BaseInfo.tb_ComInfo();
                    model.ComName       = ComName;
                    model.NaShuiNo      = NaShuiNo;
                    model.Address       = Address;
                    model.ComBrand      = ComBrand;
                    model.InvoHeader    = InvoHeader;
                    model.InvContactPer = InvContactPer;
                    model.InvAddress    = InvAddress;
                    model.InvTel        = InvTel;
                    model.NaShuiPer     = NaShuiPer;
                    model.brandNo       = brandNo;
                    model.ComTel        = ComTel;
                    model.ComChuanZhen  = ComChuanZhen;
                    model.ComBusTel     = ComBusTel;
                    model.Brand         = txtBrand.Text;
                    int id = comInfoSer.Add(model);
                    if (id > 0)
                    {
                        Response.Redirect("~/BaseInfo/WFComInfo.aspx?Id=" + id);
                        base.ClientScript.RegisterStartupScript(base.GetType(), null, "<script>alert('保存成功!');</script>");
                    }
                    else
                    {
                        // base.ClientScript.RegisterStartupScript(base.GetType(), null, "<script>alert('添加失败!');</script>");
                    }
                }
                catch (Exception ex)
                {
                    base.ClientScript.RegisterStartupScript(base.GetType(), null, "<script>alert('" + ex.Message + "!');</script>");
                }
            }
        }
Beispiel #2
0
        protected void btnUpdate_Click(object sender, EventArgs e)
        {
            if (this.FormCheck())
            {
                try
                {
                    string ComName       = this.txtComName.Text;
                    string NaShuiNo      = this.txtNaShuiNo.Text;
                    string Address       = this.txtAddress.Text;
                    string ComBrand      = this.txtComBrand.Text;
                    string InvoHeader    = this.txtInvoHeader.Text;
                    string InvContactPer = this.txtInvContactPer.Text;
                    string InvAddress    = this.txtInvAddress.Text;
                    string InvTel        = this.txtInvTel.Text;
                    string NaShuiPer     = this.txtNaShuiPer.Text;
                    string brandNo       = this.txtbrandNo.Text;
                    string ComTel        = this.txtComTel.Text;
                    string ComChuanZhen  = this.txtComChuanZhen.Text;
                    string ComBusTel     = this.txtComBusTel.Text;

                    VAN_OA.Model.BaseInfo.tb_ComInfo model = new VAN_OA.Model.BaseInfo.tb_ComInfo();
                    model.ComName       = ComName;
                    model.NaShuiNo      = NaShuiNo;
                    model.Address       = Address;
                    model.ComBrand      = ComBrand;
                    model.InvoHeader    = InvoHeader;
                    model.InvContactPer = InvContactPer;
                    model.InvAddress    = InvAddress;
                    model.InvTel        = InvTel;
                    model.NaShuiPer     = NaShuiPer;
                    model.brandNo       = brandNo;
                    model.ComTel        = ComTel;
                    model.ComChuanZhen  = ComChuanZhen;
                    model.ComBusTel     = ComBusTel;
                    model.id            = Convert.ToInt32(base.Request["Id"]);
                    model.Brand         = txtBrand.Text;
                    if (this.comInfoSer.Update(model))
                    {
                        base.ClientScript.RegisterStartupScript(base.GetType(), null, "<script>alert('保存成功!');</script>");
                    }
                    else
                    {
                        // base.ClientScript.RegisterStartupScript(base.GetType(), null, "<script>alert('修改失败!');</script>");
                    }
                }
                catch (Exception ex)
                {
                    base.ClientScript.RegisterStartupScript(base.GetType(), null, "<script>alert('" + ex.Message + "!');</script>");
                }
            }
        }
Beispiel #3
0
 private void ShowInfo(int id)
 {
     VAN_OA.Model.BaseInfo.tb_ComInfo model = comInfoSer.GetModel(id);
     this.txtComName.Text       = model.ComName;
     this.txtNaShuiNo.Text      = model.NaShuiNo;
     this.txtAddress.Text       = model.Address;
     this.txtComBrand.Text      = model.ComBrand;
     this.txtInvoHeader.Text    = model.InvoHeader;
     this.txtInvContactPer.Text = model.InvContactPer;
     this.txtInvAddress.Text    = model.InvAddress;
     this.txtInvTel.Text        = model.InvTel;
     this.txtNaShuiPer.Text     = model.NaShuiPer;
     this.txtbrandNo.Text       = model.brandNo;
     this.txtComTel.Text        = model.ComTel;
     this.txtComChuanZhen.Text  = model.ComChuanZhen;
     this.txtComBusTel.Text     = model.ComBusTel;
     txtBrand.Text = model.Brand;
 }