xw_updateNews.aspx.cs
上传用户:lishan0805
上传日期:2019-12-08
资源大小:12048k
文件大小: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. using COM.OA.Entity;
  12. using COM.OA.BLL;
  13. public partial class linminchao_xw_updateNews : 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.         else
  23.         {
  24.         if (!IsPostBack)
  25.         {
  26.             int id = Int32.Parse(this.Request.QueryString["newsid"]);
  27.             news ss = newsBLL.Select(id);
  28.             this.zhuti.Value = ss.n_title;
  29.             this.FreeTextBox1.Text = ss.n_content;
  30.         }
  31.         }
  32.     }
  33.     protected void submit1_Click(object sender, EventArgs e)
  34.     {
  35.         int id = Int32.Parse(this.Request.QueryString["newsid"]);
  36.         news ss = newsBLL.Select(id);
  37.         string bt = this.zhuti.Value;
  38.         string nr = this.FreeTextBox1.Text;
  39.         ss.n_title = bt;
  40.         ss.n_content = nr;
  41.         int ii = newsBLL.Update(ss);
  42.         if (ii < 0)
  43.         {
  44.             Response.Write(string.Format(GetRedirect.WINALERT, "修改成功!"));
  45.             Response.Write(string.Format(GetRedirect.REDIRECT, "xw_lookOneNews.aspx?newsid="+id));
  46.         }
  47.         else
  48.         {
  49.             Response.Write(string.Format(GetRedirect.WINALERT, "修改失败!"));
  50.         }
  51.     }
  52. }