InfoWrite.aspx.cs
上传用户:simon2hong
上传日期:2021-11-18
资源大小:16746k
文件大小:1k
- 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 Infos_InfoWrite : 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("../", "Infos_InfoWrite");
- }
- protected void Button1_Click(object sender, EventArgs e)
- {
- try
- {
- if (TextBoxTitle.Text == "")
- {
- throw new Exception("标题不能为空!");
- }
- if (Editor1.Text == "")
- {
- throw new Exception("内容不能为空!");
- }
-
- MB.ZT = TextBoxTitle.Text;
- MB.NR = Editor1.Text;
- MB.ZZ = SessionInclude.SessionId;
- MB.SJ = DateTime.Now;
- BB.Add(MB);
- MessageBox.Show("新闻发布成功", "ManagerNews.aspx");
- }
- catch(Exception exp)
- {
- MessageBox.Show(exp.Message);
- }
- }
- }