コード例 #1
0
        public void btnSave_Click(object sender, EventArgs e)
        {
            string strErr = "";

            if (!PageValidate.IsNumber(txtHostID.Text))
            {
                strErr += "HostID格式错误!\\n";
            }
            if (!PageValidate.IsNumber(txtChNo.Text))
            {
                strErr += "ChNo格式错误!\\n";
            }
            if (this.txtFactCode.Text.Trim().Length == 0)
            {
                strErr += "FactCode不能为空!\\n";
            }
            if (this.txtDataID.Text.Trim().Length == 0)
            {
                strErr += "DataID不能为空!\\n";
            }
            if (!PageValidate.IsNumber(txtChBand.Text))
            {
                strErr += "ChBand格式错误!\\n";
            }
            if (this.txtChBtyeType.Text.Trim().Length == 0)
            {
                strErr += "ChBtyeType不能为空!\\n";
            }

            if (strErr != "")
            {
                MessageBox.Show(this, strErr);
                return;
            }
            int    ID         = int.Parse(this.lblID.Text);
            int    HostID     = int.Parse(this.txtHostID.Text);
            int    ChNo       = int.Parse(this.txtChNo.Text);
            string FactCode   = this.txtFactCode.Text;
            string DataID     = this.txtDataID.Text;
            int    ChBand     = int.Parse(this.txtChBand.Text);
            string ChBtyeType = this.txtChBtyeType.Text;


            WebDemo.Model.WebDemo.HostsCH model = new WebDemo.Model.WebDemo.HostsCH();
            model.ID         = ID;
            model.HostID     = HostID;
            model.ChNo       = ChNo;
            model.FactCode   = FactCode;
            model.DataID     = DataID;
            model.ChBand     = ChBand;
            model.ChBtyeType = ChBtyeType;

            WebDemo.BLL.WebDemo.HostsCH bll = new WebDemo.BLL.WebDemo.HostsCH();
            bll.Update(model);
            Maticsoft.Common.MessageBox.ShowAndRedirect(this, "保存成功!", "list.aspx");
        }
コード例 #2
0
 private void ShowInfo(int ID)
 {
     WebDemo.BLL.WebDemo.HostsCH   bll   = new WebDemo.BLL.WebDemo.HostsCH();
     WebDemo.Model.WebDemo.HostsCH model = bll.GetModel(ID);
     this.lblID.Text         = model.ID.ToString();
     this.txtHostID.Text     = model.HostID.ToString();
     this.txtChNo.Text       = model.ChNo.ToString();
     this.txtFactCode.Text   = model.FactCode;
     this.txtDataID.Text     = model.DataID;
     this.txtChBand.Text     = model.ChBand.ToString();
     this.txtChBtyeType.Text = model.ChBtyeType;
 }