xw_addNews.aspx.cs
上传用户:lishan0805
上传日期:2019-12-08
资源大小:12048k
文件大小:1k
源码类别:

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. using COM.OA.BLL;
  12. using COM.OA.Entity;
  13. public partial class linminchao_xw_addNews : System.Web.UI.Page
  14. {
  15.     protected void Page_Load(object sender, EventArgs e)
  16.     {
  17.         users loginuser = Session["loginuser"] as users;
  18.         if (loginuser == null)
  19.         {
  20.             this.Response.Write(string.Format(GetRedirect.ALLREDIRECT, "../../login.aspx"));
  21.         }
  22.     }
  23.     protected void submit1_ServerClick(object sender, EventArgs e)
  24.     {
  25.         users loginuser = Session["loginuser"] as users;
  26.         news n = new news();
  27.         //获取新闻参数
  28.         string bt = this.zhuti.Value.ToString();
  29.         string nr = this.FreeTextBox1.Text.ToString();
  30.         n.n_title = bt;
  31.         n.n_content = nr;
  32.         n.n_dept_id = 1;
  33.         n.n_u_id = loginuser.u_id;
  34.         n.n_releasetime = DateTime.Now;
  35.         n.n_state = 1;
  36.         int ii = newsBLL.Insert(n);//调用插入方法
  37.         if (ii < 0)
  38.         {
  39.             Response.Write(string.Format(GetRedirect.WINALERT, "插入成功!"));
  40.             Response.Write(string.Format(GetRedirect.REDIRECT, "xw_lookNews.aspx"));
  41.         }
  42.         else {
  43.             Response.Write(string.Format(GetRedirect.WINALERT, "插入失败!"));
  44.         }
  45.     }
  46. }