コード例 #1
0
 private void ShowInfo(int Id)
 {
     OLBookstore.BLL.ReaderCommentsManager bll   = new OLBookstore.BLL.ReaderCommentsManager();
     OLBookstore.Model.ReaderComments      model = bll.GetModel(Id);
     this.lblId.Text         = model.Id.ToString();
     this.txtBookId.Text     = model.BookId.ToString();
     this.lblReaderName.Text = model.ReaderName;
     this.txtTitle.Text      = model.Title;
     this.txtComment.Text    = model.Comment;
     this.txtDate.Text       = model.Date.ToString();
 }
コード例 #2
0
        protected void btnSave_Click(object sender, EventArgs e)
        {
            string strErr = "";

            if (!PageValidate.IsNumber(txtBookId.Text))
            {
                strErr += "BookId格式错误!\\n";
            }
            if (this.txtReaderName.Text.Trim().Length == 0)
            {
                strErr += "ReaderName不能为空!\\n";
            }
            if (this.txtTitle.Text.Trim().Length == 0)
            {
                strErr += "Title不能为空!\\n";
            }
            if (this.txtComment.Text.Trim().Length == 0)
            {
                strErr += "Comment不能为空!\\n";
            }
            if (!PageValidate.IsDateTime(txtDate.Text))
            {
                strErr += "Date格式错误!\\n";
            }

            if (strErr != "")
            {
                MessageBox.Show(this, strErr);
                return;
            }
            int      BookId     = int.Parse(this.txtBookId.Text);
            string   ReaderName = this.txtReaderName.Text;
            string   Title      = this.txtTitle.Text;
            string   Comment    = this.txtComment.Text;
            DateTime Date       = DateTime.Parse(this.txtDate.Text);

            OLBookstore.Model.ReaderComments model = new OLBookstore.Model.ReaderComments();
            model.BookId     = BookId;
            model.ReaderName = ReaderName;
            model.Title      = Title;
            model.Comment    = Comment;
            model.Date       = Date;

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