示例#1
0
 private void ShowInfo(int id)
 {
     Maticsoft.BLL.Member   bll   = new Maticsoft.BLL.Member();
     Maticsoft.Model.Member model = bll.GetModel(id);
     this.lblid.Text           = model.id.ToString();
     this.txtMemberName.Text   = model.MemberName;
     this.txtMemberPhone.Text  = model.MemberPhone;
     this.txtMemberPhone1.Text = model.MemberPhone1;
     this.txtIntegral.Text     = model.Integral;
     this.txtaddress.Text      = model.address;
     this.txtBeizhu.Text       = model.Beizhu;
     this.txtBY1.Text          = model.BY1.ToString();
     this.txtBY2.Text          = model.BY2.ToString();
     this.txtBY3.Text          = model.BY3.ToString();
     this.txtBY4.Text          = model.BY4;
     this.txtBY5.Text          = model.BY5;
     this.txtBY6.Text          = model.BY6;
     this.txtBY7.Text          = model.BY7;
 }
示例#2
0
        public void btnSave_Click(object sender, EventArgs e)
        {
            string strErr = "";

            if (this.txtMemberName.Text.Trim().Length == 0)
            {
                strErr += "MemberName不能为空!\\n";
            }
            if (this.txtMemberPhone.Text.Trim().Length == 0)
            {
                strErr += "MemberPhone不能为空!\\n";
            }
            if (this.txtMemberPhone1.Text.Trim().Length == 0)
            {
                strErr += "MemberPhone1不能为空!\\n";
            }
            if (this.txtIntegral.Text.Trim().Length == 0)
            {
                strErr += "Integral不能为空!\\n";
            }
            if (this.txtaddress.Text.Trim().Length == 0)
            {
                strErr += "address不能为空!\\n";
            }
            if (this.txtBeizhu.Text.Trim().Length == 0)
            {
                strErr += "Beizhu不能为空!\\n";
            }
            if (!PageValidate.IsDecimal(txtBY1.Text))
            {
                strErr += "BY1格式错误!\\n";
            }
            if (!PageValidate.IsDecimal(txtBY2.Text))
            {
                strErr += "BY2格式错误!\\n";
            }
            if (!PageValidate.IsDecimal(txtBY3.Text))
            {
                strErr += "BY3格式错误!\\n";
            }
            if (this.txtBY4.Text.Trim().Length == 0)
            {
                strErr += "BY4不能为空!\\n";
            }
            if (this.txtBY5.Text.Trim().Length == 0)
            {
                strErr += "BY5不能为空!\\n";
            }
            if (this.txtBY6.Text.Trim().Length == 0)
            {
                strErr += "BY6不能为空!\\n";
            }
            if (this.txtBY7.Text.Trim().Length == 0)
            {
                strErr += "BY7不能为空!\\n";
            }

            if (strErr != "")
            {
                MessageBox.Show(this, strErr);
                return;
            }
            int     id           = int.Parse(this.lblid.Text);
            string  MemberName   = this.txtMemberName.Text;
            string  MemberPhone  = this.txtMemberPhone.Text;
            string  MemberPhone1 = this.txtMemberPhone1.Text;
            string  Integral     = this.txtIntegral.Text;
            string  address      = this.txtaddress.Text;
            string  Beizhu       = this.txtBeizhu.Text;
            decimal BY1          = decimal.Parse(this.txtBY1.Text);
            decimal BY2          = decimal.Parse(this.txtBY2.Text);
            decimal BY3          = decimal.Parse(this.txtBY3.Text);
            string  BY4          = this.txtBY4.Text;
            string  BY5          = this.txtBY5.Text;
            string  BY6          = this.txtBY6.Text;
            string  BY7          = this.txtBY7.Text;


            Maticsoft.Model.Member model = new Maticsoft.Model.Member();
            model.id           = id;
            model.MemberName   = MemberName;
            model.MemberPhone  = MemberPhone;
            model.MemberPhone1 = MemberPhone1;
            model.Integral     = Integral;
            model.address      = address;
            model.Beizhu       = Beizhu;
            model.BY1          = BY1;
            model.BY2          = BY2;
            model.BY3          = BY3;
            model.BY4          = BY4;
            model.BY5          = BY5;
            model.BY6          = BY6;
            model.BY7          = BY7;

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