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

            if (this.txttext.Text.Trim().Length == 0)
            {
                strErr += "text不能为空!\\n";
            }

            if (this.txtbeizhu.Text.Trim().Length == 0)
            {
                strErr += "beizhu不能为空!\\n";
            }

            if (strErr != "")
            {
                MessageBox.Show(this, strErr);
                return;
            }
            int    que_n_id = int.Parse(inv_que_n.SelectedValue);
            string text     = this.txttext.Text;
            string style    = style_dro.SelectedValue;
            string beizhu   = this.txtbeizhu.Text;

            Maticsoft.Model.inv_que model = new Maticsoft.Model.inv_que();
            model.que_n_id = que_n_id;
            model.text     = text;
            model.style    = style;
            model.beizhu   = beizhu;

            Maticsoft.BLL.inv_que bll = new Maticsoft.BLL.inv_que();
            bll.Add(model);
            Maticsoft.Common.MessageBox.ShowAndRedirect(this, "保存成功!", "add.aspx");
        }
Ejemplo n.º 2
0
 private void ShowInfo(int id)
 {
     Maticsoft.BLL.inv_que   bll   = new Maticsoft.BLL.inv_que();
     Maticsoft.Model.inv_que model = bll.GetModel(id);
     this.lblid.Text       = model.id.ToString();
     this.txtque_n_id.Text = model.que_n_id.ToString();
     this.txttext.Text     = model.text;
     this.txtstyle.Text    = model.style;
     this.txtbeizhu.Text   = model.beizhu;
 }
Ejemplo n.º 3
0
        public void btnSave_Click(object sender, EventArgs e)
        {
            string strErr = "";

            if (!PageValidate.IsNumber(txtque_n_id.Text))
            {
                strErr += "que_n_id格式错误!\\n";
            }
            if (this.txttext.Text.Trim().Length == 0)
            {
                strErr += "text不能为空!\\n";
            }
            if (this.txtstyle.Text.Trim().Length == 0)
            {
                strErr += "style不能为空!\\n";
            }
            if (this.txtbeizhu.Text.Trim().Length == 0)
            {
                strErr += "beizhu不能为空!\\n";
            }

            if (strErr != "")
            {
                MessageBox.Show(this, strErr);
                return;
            }
            int    id       = int.Parse(this.lblid.Text);
            int    que_n_id = int.Parse(this.txtque_n_id.Text);
            string text     = this.txttext.Text;
            string style    = this.txtstyle.Text;
            string beizhu   = this.txtbeizhu.Text;


            Maticsoft.Model.inv_que model = new Maticsoft.Model.inv_que();
            model.id       = id;
            model.que_n_id = que_n_id;
            model.text     = text;
            model.style    = style;
            model.beizhu   = beizhu;

            Maticsoft.BLL.inv_que bll = new Maticsoft.BLL.inv_que();
            bll.Update(model);
            Maticsoft.Common.MessageBox.ShowAndRedirect(this, "保存成功!", "list.aspx");
        }