Ejemplo n.º 1
0
 private void ShowInfo(int id)
 {
     Movie.BLL.topic   bll   = new Movie.BLL.topic();
     Movie.Model.topic model = bll.GetModel(id);
     this.lblid.Text        = model.id.ToString();
     this.lblusersid.Text   = model.usersid;
     this.lblarticleid.Text = model.articleid;
     this.lblcontents.Text  = model.contents;
     this.lbladdtime.Text   = model.addtime;
 }
Ejemplo n.º 2
0
        protected void btnSave_Click(object sender, EventArgs e)
        {
            string strErr = "";

            if (!PageValidate.IsNumber(txtid.Text))
            {
                strErr += "id格式错误!\\n";
            }
            if (this.txtusersid.Text.Trim().Length == 0)
            {
                strErr += "usersid不能为空!\\n";
            }
            if (this.txtarticleid.Text.Trim().Length == 0)
            {
                strErr += "articleid不能为空!\\n";
            }
            if (this.txtcontents.Text.Trim().Length == 0)
            {
                strErr += "contents不能为空!\\n";
            }
            if (this.txtaddtime.Text.Trim().Length == 0)
            {
                strErr += "addtime不能为空!\\n";
            }

            if (strErr != "")
            {
                MessageBox.Show(this, strErr);
                return;
            }
            int    id        = int.Parse(this.txtid.Text);
            string usersid   = this.txtusersid.Text;
            string articleid = this.txtarticleid.Text;
            string contents  = this.txtcontents.Text;
            string addtime   = this.txtaddtime.Text;

            Movie.Model.topic model = new Movie.Model.topic();
            model.id        = id;
            model.usersid   = usersid;
            model.articleid = articleid;
            model.contents  = contents;
            model.addtime   = addtime;

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