InfoEdit.aspx.cs
上传用户:simon2hong
上传日期:2021-11-18
资源大小:16746k
文件大小:2k
源码类别:

OA系统

开发平台:

C#

  1. using System;
  2. using System.Data;
  3. using System.Configuration;
  4. using System.Collections;
  5. using System.Web;
  6. using System.Web.Security;
  7. using System.Web.UI;
  8. using System.Web.UI.WebControls;
  9. using System.Web.UI.WebControls.WebParts;
  10. using System.Web.UI.HtmlControls;
  11. public partial class InfoEdit : System.Web.UI.Page
  12. {
  13.     /// <summary>
  14.     /// 论坛模板
  15.     /// </summary>
  16.     Model.INFONews MB = new Model.INFONews();
  17.     /// <summary>
  18.     /// 论坛业务
  19.     /// </summary>
  20.     BLL.INFONews BB = new BLL.INFONews();
  21.     protected void Page_Load(object sender, EventArgs e)
  22.     {
  23.         LoginLogic.MatchLoad("../", "InfoEdit");
  24.         if (!IsPostBack)
  25.         {
  26.             if(Request.QueryString["id"]!=null)
  27.             {
  28.                 MB = BB.GetModel(int.Parse(Request.QueryString["id"].ToString()));
  29.                 Editor1.Text = MB.NR;
  30.                 TextBoxTitle.Text = MB.ZT;
  31.             }
  32.         }
  33.     }
  34.     protected void Button1_Click(object sender, EventArgs e)
  35.     {
  36.         try
  37.         {
  38.             if (TextBoxTitle.Text == "")
  39.             {
  40.                 throw new Exception("标题不能为空!");
  41.             }
  42.             if (Editor1.Text == "")
  43.             {
  44.                 throw new Exception("内容不能为空!");
  45.             }
  46.       
  47.             MB.SJ = DateTime.Now;
  48.             MB.ZT = TextBoxTitle.Text;
  49.             MB.NR = Editor1.Text;
  50.             MB.ZZ = SessionInclude.SessionId;
  51.             BB.Update(MB);
  52.             MessageBox.Show("更新成功", "ManagerNews.aspx");
  53.         }
  54.         catch(Exception exp)
  55.         {
  56.             MessageBox.Show(exp.Message);
  57.         }
  58.         }
  59.    
  60.     }