chakanjiluneirong.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.BLL;
  12. using System.Collections.Generic;
  13. using COM.OA.Entity;
  14. public partial class chakanjiluneirong : System.Web.UI.Page
  15. {
  16.     protected void Page_Load(object sender, EventArgs e)
  17.     {
  18.         //接收消息ID
  19.         string idd=this.Request["id"];
  20.         //判断是否为空
  21.         if (idd != null && idd!="")
  22.         {
  23.             //格式化ID为int类型
  24.             int id = Int32.Parse(idd);
  25.             //设置WHERE语句
  26.             string where = "m_id='{0}'";
  27.             where = string.Format(where, id);
  28.             //查询数据库
  29.             IList<message> list = messageBLL.Select(where);
  30.             //判断是否为空
  31.             if (list.Count != 0)
  32.             {
  33.                 //用实体接收显示
  34.                 message m = list[0];
  35.                 m.m_isreturn = 1;
  36.                 messageBLL.Update(m);
  37.                 this.txt_biaoti.Text = m.m_title;
  38.                 this.txt_neirong.Text = m.m_content;
  39.                 //把发送人ID转换成中文名字
  40.                 users uu = usersBLL.Select(m.m_u_id);
  41.                 this.txt_fabiaoren.Text = uu.u_username;
  42.             }
  43.             //如果为空,显示数据库中无此数据
  44.             else
  45.             {
  46.                 this.Response.Write(string.Format(GetRedirect.WINALERT, "数据库中无此数据"));
  47.             }
  48.         }
  49.         //如果接收的发送消息ID为空,跳回发送记录页
  50.         else
  51.         {
  52.             this.Response.Write(string.Format(GetRedirect.REDIRECT,"jieshouxinxi.aspx"));
  53.         }
  54.     }
  55. }