BBSView.aspx.cs
上传用户:simon2hong
上传日期:2021-11-18
资源大小:16746k
文件大小:3k
源码类别:

OA系统

开发平台:

C#

  1. using System;
  2. using System.Data;
  3. using System.Configuration;
  4. using System.Collections.Generic;
  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. public partial class BBS_BBSView : System.Web.UI.Page
  12. {
  13.     /// <summary>
  14.     /// 论坛模板
  15.     /// </summary>
  16.     Model.BBS MB = new Model.BBS();
  17.     /// <summary>
  18.     /// 论坛业务
  19.     /// </summary>
  20.     BLL.BBS BB = new BLL.BBS();
  21.     /// <summary>
  22.     /// 回复模板
  23.     /// </summary>
  24.     Model.BBSBack MBB = new Model.BBSBack();
  25.     /// <summary>
  26.     /// 回复业务
  27.     /// </summary>
  28.     BLL.BBSBack BBB = new BLL.BBSBack();
  29.     /// <summary>
  30.     /// 标题
  31.     /// </summary>
  32.     public string TitleStr = "";
  33.     /// <summary>
  34.     /// 内容
  35.     /// </summary>
  36.     public string ContentStr = "";
  37.     /// <summary>
  38.     /// 回复
  39.     /// </summary>
  40.     public string RepBackStr = "";
  41.     protected void Page_Load(object sender, EventArgs e)
  42.     {
  43.         LoginLogic.MatchLoad("../", "BBS_BBSView");
  44.         if (!IsPostBack)
  45.         {
  46.             if(Request.QueryString["id"]!=null)
  47.             {
  48.                 MB = BB.GetModel(int.Parse(Request.QueryString["id"].ToString()));
  49.                 MB.DJ = MB.DJ + 1;
  50.                 BB.Update(MB);//阅读加一
  51.                 DropDownListType.Text = EnumGet.GetBBSSmailTYPEName(int.Parse(MB.FL));
  52.                 TextBoxContent.Text = MB.ZTNR;
  53.                 TextBoxTitle.Text = MB.ZT;
  54.                 string TiaoJian="ZTID="+Request.QueryString["id"].ToString();
  55.                 int Count=BBB.GetCount(TiaoJian);
  56.                 if (Count > 0)
  57.                 {
  58.                     List<Model.BBSBack> LMBB = BBB.GetPageList(Count, 1, "ID", false, TiaoJian);
  59.                     GetListStr(LMBB);
  60.                 }
  61.             }
  62.         }
  63.     }
  64.     public void GetListStr(List<Model.BBSBack> LMBB)
  65.     {
  66.         foreach (Model.BBSBack MB in LMBB)
  67.         {
  68.           RepBackStr+=  @"<tr>
  69.                     <td class=""usertablerow2"" align=""left"" style=""height: 32px;"" colspan=""2"">
  70.                 <br />
  71.                 回复者:" + MB.HFZZ + @"&nbsp;时间:" + MB.HFSJ + @"
  72.                 <hr />      
  73.                 " + MB.HFNR + @"
  74.             </td>
  75.         </tr>";
  76.         
  77.         
  78.         }
  79.     }
  80.     protected void Button1_Click(object sender, EventArgs e)
  81.     {
  82.         try
  83.         {
  84.             if (TextBoxBack.Text == "")
  85.             {
  86.                 throw new Exception("回复内容不能为空!");
  87.             }
  88.             MBB.HFNR = TextBoxBack.Text;
  89.             MBB.ZTID = int.Parse(Request.QueryString["id"].ToString());
  90.             MBB.HFZZ = SessionInclude.SessionId;
  91.             MBB.HFSJ = DateTime.Now;
  92.             MB = BB.GetModel(int.Parse(Request.QueryString["id"].ToString()));
  93.             MB.HF = MB.HF + 1; 
  94.             BB.Update(MB);//阅读加一
  95.             BBB.Add(MBB);
  96.             MessageBox.Show("回复成功", "BBSView.aspx?id=" + Request.QueryString["id"].ToString());
  97.         }
  98.         catch(Exception exp)
  99.         {
  100.             MessageBox.Show(exp.Message);
  101.         }
  102.     }
  103.    
  104.     }