InfoEdit.aspx.cs
上传用户:simon2hong
上传日期:2021-11-18
资源大小:16746k
文件大小:2k
- using System;
- using System.Data;
- using System.Configuration;
- using System.Collections;
- using System.Web;
- using System.Web.Security;
- using System.Web.UI;
- using System.Web.UI.WebControls;
- using System.Web.UI.WebControls.WebParts;
- using System.Web.UI.HtmlControls;
- public partial class InfoEdit : System.Web.UI.Page
- {
- /// <summary>
- /// 论坛模板
- /// </summary>
- Model.INFONews MB = new Model.INFONews();
- /// <summary>
- /// 论坛业务
- /// </summary>
- BLL.INFONews BB = new BLL.INFONews();
- protected void Page_Load(object sender, EventArgs e)
- {
- LoginLogic.MatchLoad("../", "InfoEdit");
- if (!IsPostBack)
- {
- if(Request.QueryString["id"]!=null)
- {
- MB = BB.GetModel(int.Parse(Request.QueryString["id"].ToString()));
- Editor1.Text = MB.NR;
- TextBoxTitle.Text = MB.ZT;
- }
- }
- }
- protected void Button1_Click(object sender, EventArgs e)
- {
- try
- {
- if (TextBoxTitle.Text == "")
- {
- throw new Exception("标题不能为空!");
- }
- if (Editor1.Text == "")
- {
- throw new Exception("内容不能为空!");
- }
-
- MB.SJ = DateTime.Now;
- MB.ZT = TextBoxTitle.Text;
- MB.NR = Editor1.Text;
- MB.ZZ = SessionInclude.SessionId;
- BB.Update(MB);
- MessageBox.Show("更新成功", "ManagerNews.aspx");
- }
- catch(Exception exp)
- {
- MessageBox.Show(exp.Message);
- }
- }
-
- }