MessageDetails.aspx.cs
上传用户:tree100901
上传日期:2007-06-03
资源大小:2295k
文件大小:4k
源码类别:

OA系统

开发平台:

C#

  1. using System;
  2. using System.Collections;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Data.SqlClient;
  6. using System.Drawing;
  7. using System.Web;
  8. using System.Web.SessionState;
  9. using System.Web.UI;
  10. using System.Web.UI.WebControls;
  11. using System.Web.UI.HtmlControls;
  12. namespace OA
  13. {
  14. /// <summary>
  15. /// MessageDetails 的摘要说明。
  16. /// </summary>
  17. public class MessageDetails : System.Web.UI.Page
  18. {
  19. protected System.Web.UI.WebControls.Label Sender;
  20. protected System.Web.UI.WebControls.Label Date;
  21. protected System.Web.UI.HtmlControls.HtmlInputButton back;
  22. protected System.Web.UI.WebControls.Label Attachment;
  23. protected System.Web.UI.HtmlControls.HtmlGenericControl Contents;
  24. protected System.Data.SqlClient.SqlConnection MyConnection;
  25. private void Page_Load(object sender, System.EventArgs e)
  26. {
  27. MyConnection=new SqlConnection(System.Configuration.ConfigurationSettings.AppSettings["ConnectionString"]);
  28. if(Request.Params["MessageID"]!=null)
  29. {
  30. int  MID = Int32.Parse(Request.Params["MessageID"]);
  31.                 string PID = "";
  32. int i;
  33. SqlCommand MyCommand = new SqlCommand("MessageContents",MyConnection);
  34. MyCommand.CommandType = CommandType.StoredProcedure;
  35. MyCommand.Parameters.Add(new SqlParameter("@MessageID", SqlDbType.Int, 4));
  36. MyCommand.Parameters["@MessageID"].Value = Int32.Parse(Request.Params["MessageID"]);
  37. MyConnection.Open();
  38. SqlDataReader myReader =  MyCommand.ExecuteReader();
  39. myReader.Read(); 
  40. PID = myReader["PersonID"].ToString();
  41. Contents.InnerHtml = myReader["Contents"].ToString();
  42. Date.Text = myReader["Date"].ToString();
  43. if(myReader["Attachment"].ToString().Trim()!="")
  44. Attachment.Text="附件:<a href=javascript:window.open('MessageAttachment\\"+myReader["Attachment"].ToString()+"','','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,revisable=no,left=100,top=0');window.close();>"+myReader["Attachment"].ToString()+"</a>";
  45. else
  46.                 Attachment.Text="附件:无";
  47. i= Int32.Parse(myReader["State"].ToString());
  48. i++;
  49. myReader.Close();
  50. SqlCommand MyCommand0 = new SqlCommand("PersonName",MyConnection);
  51. MyCommand0.CommandType = CommandType.StoredProcedure;
  52. MyCommand0.Parameters.Add(new SqlParameter("@PersonID", SqlDbType.Int, 4));
  53. MyCommand0.Parameters["@PersonID"].Value = Int32.Parse(PID);
  54. SqlDataReader myReader0 =  MyCommand0.ExecuteReader();
  55. myReader0.Read(); 
  56. Sender.Text = myReader0["Name"].ToString();
  57. if(myReader0["Name"].ToString()==User.Identity.Name)
  58. back.Visible = false;
  59. myReader0.Close();
  60. SqlCommand MyCommand2= new SqlCommand("UpdateMessageState", MyConnection);
  61. MyCommand2.CommandType = CommandType.StoredProcedure;
  62. MyCommand2.Parameters.Add(new SqlParameter("@MessageID", SqlDbType.Int, 4));
  63. MyCommand2.Parameters["@MessageID"].Value = MID;
  64. MyCommand2.Parameters.Add(new SqlParameter("@State", SqlDbType.Int, 4));
  65. MyCommand2.Parameters["@State"].Value = i.ToString();
  66. MyCommand2.ExecuteNonQuery();
  67. MyConnection.Close();
  68. }
  69. // 在此处放置用户代码以初始化页面
  70. }
  71. #region Web 窗体设计器生成的代码
  72. override protected void OnInit(EventArgs e)
  73. {
  74. //
  75. // CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
  76. //
  77. InitializeComponent();
  78. base.OnInit(e);
  79. }
  80. /// <summary>
  81. /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  82. /// 此方法的内容。
  83. /// </summary>
  84. private void InitializeComponent()
  85. {    
  86. this.Load += new System.EventHandler(this.Page_Load);
  87. }
  88. #endregion
  89. }
  90. }