Exemple #1
0
 private void ShowInfo(int id)
 {
     Movie.BLL.users   bll   = new Movie.BLL.users();
     Movie.Model.users model = bll.GetModel(id);
     this.lblid.Text       = model.id.ToString();
     this.lbluname.Text    = model.uname;
     this.lblpwd.Text      = model.pwd;
     this.lblrealname.Text = model.realname;
     this.lblsex.Text      = model.sex;
     this.lblbirthday.Text = model.birthday;
     this.lblcontact.Text  = model.contact;
     this.lblemail.Text    = model.email;
 }
Exemple #2
0
        protected void btnSave_Click(object sender, EventArgs e)
        {
            string strErr = "";

            if (!PageValidate.IsNumber(txtid.Text))
            {
                strErr += "id格式错误!\\n";
            }
            if (this.txtuname.Text.Trim().Length == 0)
            {
                strErr += "uname不能为空!\\n";
            }
            if (this.txtpwd.Text.Trim().Length == 0)
            {
                strErr += "pwd不能为空!\\n";
            }
            if (this.txtrealname.Text.Trim().Length == 0)
            {
                strErr += "realname不能为空!\\n";
            }
            if (this.txtsex.Text.Trim().Length == 0)
            {
                strErr += "sex不能为空!\\n";
            }
            if (this.txtbirthday.Text.Trim().Length == 0)
            {
                strErr += "birthday不能为空!\\n";
            }
            if (this.txtcontact.Text.Trim().Length == 0)
            {
                strErr += "contact不能为空!\\n";
            }
            if (this.txtemail.Text.Trim().Length == 0)
            {
                strErr += "email不能为空!\\n";
            }

            if (strErr != "")
            {
                MessageBox.Show(this, strErr);
                return;
            }
            int    id       = int.Parse(this.txtid.Text);
            string uname    = this.txtuname.Text;
            string pwd      = this.txtpwd.Text;
            string realname = this.txtrealname.Text;
            string sex      = this.txtsex.Text;
            string birthday = this.txtbirthday.Text;
            string contact  = this.txtcontact.Text;
            string email    = this.txtemail.Text;

            Movie.Model.users model = new Movie.Model.users();
            model.id       = id;
            model.uname    = uname;
            model.pwd      = pwd;
            model.realname = realname;
            model.sex      = sex;
            model.birthday = birthday;
            model.contact  = contact;
            model.email    = email;

            Movie.BLL.users bll = new Movie.BLL.users();
            bll.Add(model);
            Maticsoft.Common.MessageBox.ShowAndRedirect(this, "保存成功!", "add.aspx");
        }