lt_update.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. using System.Collections.Generic;
  14. public partial class linminchao_bbs_lt_update : System.Web.UI.Page
  15. {
  16.     protected void Page_Load(object sender, EventArgs e)
  17.     {
  18.         if (!IsPostBack)
  19.         {
  20.             int id = Int32.Parse(this.Request["id"]);
  21.             bbs bb = bbsBLL.Select(id);
  22.             this.Label1.Text = bb.bbs_title;
  23.             this.FreeTextBox1.Text = bb.bbs_content;
  24.         }
  25.     }
  26.     protected void submit2_ServerClick(object sender, EventArgs e)
  27.     {
  28.         int id = Int32.Parse(this.Request["id"]);
  29.         bbs bb = bbsBLL.Select(id);
  30.         bb.bbs_content = this.FreeTextBox1.Text;
  31.         bb.bbs_releasetime = DateTime.Now;
  32.         int i = bbsBLL.Update(bb);
  33.         if (i < 0)
  34.         {
  35.             this.Response.Write(string.Format(GetRedirect.WINALERT, "修改帖子成功!"));
  36.             this.Response.Write(string.Format(GetRedirect.REDIRECT, "lt_lookbbs.aspx"));
  37.         }
  38.         else {
  39.             this.Response.Write(string.Format(GetRedirect.WINALERT, "修改帖子失败!"));
  40.         }
  41.     }
  42. }