Пример #1
0
 protected void Page_Load(object sender, EventArgs e)
 {
     if (!Page.IsPostBack)
     {
         Maticsoft.BLL.ArtsMatter bll = new Maticsoft.BLL.ArtsMatter();
         if (Request.Params["id"] != null && Request.Params["id"].Trim() != "")
         {
             int ID = (Convert.ToInt32(Request.Params["id"]));
             bll.Delete(ID);
         }
     }
 }
Пример #2
0
 private void ShowInfo(int ID)
 {
     Maticsoft.BLL.ArtsMatter   bll   = new Maticsoft.BLL.ArtsMatter();
     Maticsoft.Model.ArtsMatter model = bll.GetModel(ID);
     this.lblID.Text         = model.ID.ToString();
     this.txtTitle.Text      = model.Title;
     this.txtContent.Text    = model.Content;
     this.txtTime.Text       = model.Time.ToString();
     this.txtAttachment.Text = model.Attachment;
     this.txtGroupID.Text    = model.GroupID.ToString();
     this.chkIsOpen.Checked  = model.IsOpen;
     this.txtClick.Text      = model.Click.ToString();
     this.lblNo.Text         = model.No.ToString();
     this.txtMark.Text       = model.Mark.ToString();
     this.txtS1.Text         = model.S1;
 }
Пример #3
0
 private void ShowInfo(int ID)
 {
     Maticsoft.BLL.ArtsMatter   bll   = new Maticsoft.BLL.ArtsMatter();
     Maticsoft.Model.ArtsMatter model = bll.GetModel(ID);
     this.lblID.Text         = model.ID.ToString();
     this.lblTitle.Text      = model.Title;
     this.lblContent.Text    = model.Content;
     this.lblTime.Text       = model.Time.ToString();
     this.lblAttachment.Text = model.Attachment;
     this.lblGroupID.Text    = model.GroupID.ToString();
     this.lblIsOpen.Text     = model.IsOpen?"是":"否";
     this.lblClick.Text      = model.Click.ToString();
     this.lblNo.Text         = model.No.ToString();
     this.lblMark.Text       = model.Mark.ToString();
     this.lblS1.Text         = model.S1;
 }
Пример #4
0
        protected void btnSave_Click(object sender, EventArgs e)
        {
            string strErr = "";

            if (this.txtTitle.Text.Trim().Length == 0)
            {
                strErr += "标题不能为空!\\n";
            }
            if (this.txtContent.Text.Trim().Length == 0)
            {
                strErr += "内容不能为空!\\n";
            }
            if (!PageValidate.IsDateTime(txtTime.Text))
            {
                strErr += "发布时间格式错误!\\n";
            }
            if (this.txtAttachment.Text.Trim().Length == 0)
            {
                strErr += "附件不能为空!\\n";
            }
            if (!PageValidate.IsNumber(txtGroupID.Text))
            {
                strErr += "分组格式错误!\\n";
            }
            if (!PageValidate.IsNumber(txtClick.Text))
            {
                strErr += "点击数格式错误!\\n";
            }
            if (!PageValidate.IsNumber(txtNo.Text))
            {
                strErr += "No格式错误!\\n";
            }
            if (!PageValidate.IsNumber(txtMark.Text))
            {
                strErr += "Mark格式错误!\\n";
            }
            if (this.txtS1.Text.Trim().Length == 0)
            {
                strErr += "S1不能为空!\\n";
            }

            if (strErr != "")
            {
                MessageBox.Show(this, strErr);
                return;
            }
            string   Title      = this.txtTitle.Text;
            string   Content    = this.txtContent.Text;
            DateTime Time       = DateTime.Parse(this.txtTime.Text);
            string   Attachment = this.txtAttachment.Text;
            int      GroupID    = int.Parse(this.txtGroupID.Text);
            bool     IsOpen     = this.chkIsOpen.Checked;
            int      Click      = int.Parse(this.txtClick.Text);
            int      No         = int.Parse(this.txtNo.Text);
            int      Mark       = int.Parse(this.txtMark.Text);
            string   S1         = this.txtS1.Text;

            Maticsoft.Model.ArtsMatter model = new Maticsoft.Model.ArtsMatter();
            model.Title      = Title;
            model.Content    = Content;
            model.Time       = Time;
            model.Attachment = Attachment;
            model.GroupID    = GroupID;
            model.IsOpen     = IsOpen;
            model.Click      = Click;
            model.No         = No;
            model.Mark       = Mark;
            model.S1         = S1;

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