Пример #1
0
        public void btnSave_Click(object sender, EventArgs e)
        {
            string strErr = "";

            if (this.txtSewpartname.Text.Trim().Length == 0)
            {
                strErr += "Sewpartname不能为空!\\n";
            }
            if (this.txtcode.Text.Trim().Length == 0)
            {
                strErr += "code不能为空!\\n";
            }

            if (strErr != "")
            {
                MessageBox.Show(this, strErr);
                return;
            }
            int    number      = int.Parse(this.lblnumber.Text);
            string Sewpartname = this.txtSewpartname.Text;
            string code        = this.txtcode.Text;


            Maticsoft.Model.sewpartition model = new Maticsoft.Model.sewpartition();
            model.number      = number;
            model.Sewpartname = Sewpartname;
            model.code        = code;

            Maticsoft.BLL.sewpartition bll = new Maticsoft.BLL.sewpartition();
            bll.Update(model);
            Maticsoft.Common.MessageBox.ShowAndRedirect(this, "保存成功!", "list.aspx");
        }
Пример #2
0
        protected void btnSave_Click(object sender, EventArgs e)
        {
            string strErr = "";

            if (this.txtSewpartname.Text.Trim().Length == 0)
            {
                strErr += "Sewpartname不能为空!\\n";
            }
            if (this.txtcode.Text.Trim().Length == 0)
            {
                strErr += "code不能为空!\\n";
            }

            if (strErr != "")
            {
                MessageBox.Show(this, strErr);
                return;
            }
            string Sewpartname = this.txtSewpartname.Text;
            string code        = this.txtcode.Text;

            Maticsoft.Model.sewpartition model = new Maticsoft.Model.sewpartition();
            model.Sewpartname = Sewpartname;
            model.code        = code;

            Maticsoft.BLL.sewpartition bll = new Maticsoft.BLL.sewpartition();
            bll.Add(model);
            Maticsoft.Common.MessageBox.ShowAndRedirect(this, "保存成功!", "add.aspx");
        }
Пример #3
0
 private void ShowInfo(int number)
 {
     Maticsoft.BLL.sewpartition   bll   = new Maticsoft.BLL.sewpartition();
     Maticsoft.Model.sewpartition model = bll.GetModel(number);
     this.lblnumber.Text      = model.number.ToString();
     this.txtSewpartname.Text = model.Sewpartname;
     this.txtcode.Text        = model.code;
 }