Exemplo n.º 1
0
        public void btnSave_Click(object sender, EventArgs e)
        {
            string strErr = "";

            if (this.txtrainpartname.Text.Trim().Length == 0)
            {
                strErr += "rainpartname不能为空!\\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 rainpartname = this.txtrainpartname.Text;
            string code         = this.txtcode.Text;


            Maticsoft.Model.rainpartition model = new Maticsoft.Model.rainpartition();
            model.number       = number;
            model.rainpartname = rainpartname;
            model.code         = code;

            Maticsoft.BLL.rainpartition bll = new Maticsoft.BLL.rainpartition();
            bll.Update(model);
            Maticsoft.Common.MessageBox.ShowAndRedirect(this, "保存成功!", "list.aspx");
        }
Exemplo n.º 2
0
        protected void btnSave_Click(object sender, EventArgs e)
        {
            string strErr = "";

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

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

            Maticsoft.Model.rainpartition model = new Maticsoft.Model.rainpartition();
            model.rainpartname = rainpartname;
            model.code         = code;

            Maticsoft.BLL.rainpartition bll = new Maticsoft.BLL.rainpartition();
            bll.Add(model);
            Maticsoft.Common.MessageBox.ShowAndRedirect(this, "保存成功!", "add.aspx");
        }
Exemplo n.º 3
0
 private void ShowInfo(int number)
 {
     Maticsoft.BLL.rainpartition   bll   = new Maticsoft.BLL.rainpartition();
     Maticsoft.Model.rainpartition model = bll.GetModel(number);
     this.lblnumber.Text       = model.number.ToString();
     this.txtrainpartname.Text = model.rainpartname;
     this.txtcode.Text         = model.code;
 }