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

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. /// Notification 的摘要说明。
  16. /// </summary>
  17. public class Notification : System.Web.UI.Page
  18. {
  19. protected System.Web.UI.WebControls.Label Contents;
  20. protected System.Web.UI.WebControls.Label Writer;
  21. protected System.Data.SqlClient.SqlConnection MyConnection;
  22. private void Page_Load(object sender, System.EventArgs e)
  23. {
  24. MyConnection=new SqlConnection(System.Configuration.ConfigurationSettings.AppSettings["ConnectionString"]);
  25. if(Request.Params["NotificationID"]!=null)
  26. {
  27. int  MID = Int32.Parse(Request.Params["NotificationID"]);
  28. string PID = "",Date;
  29. SqlCommand MyCommand = new SqlCommand("SelectNotification",MyConnection);
  30. MyCommand.CommandType = CommandType.StoredProcedure;
  31. MyCommand.Parameters.Add(new SqlParameter("@NotificationID", SqlDbType.Int, 4));
  32. MyCommand.Parameters["@NotificationID"].Value = MID;
  33. MyConnection.Open();
  34. SqlDataReader myReader =  MyCommand.ExecuteReader();
  35. myReader.Read(); 
  36. PID = myReader["PersonID"].ToString();
  37. Contents.Text = "&nbsp;&nbsp;&nbsp;&nbsp;"+myReader["Contents"].ToString();
  38. Date = myReader["Date"].ToString();
  39. myReader.Close();
  40. SqlCommand MyCommand0 = new SqlCommand("PersonName",MyConnection);
  41. MyCommand0.CommandType = CommandType.StoredProcedure;
  42. MyCommand0.Parameters.Add(new SqlParameter("@PersonID", SqlDbType.Int, 4));
  43. MyCommand0.Parameters["@PersonID"].Value = Int32.Parse(PID);
  44. SqlDataReader myReader0 =  MyCommand0.ExecuteReader();
  45. myReader0.Read(); 
  46. Writer.Text = "("+myReader0["Name"].ToString()+"&nbsp;"+Date+")";
  47. myReader0.Close();
  48. }
  49. // 在此处放置用户代码以初始化页面
  50. }
  51. #region Web 窗体设计器生成的代码
  52. override protected void OnInit(EventArgs e)
  53. {
  54. //
  55. // CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
  56. //
  57. InitializeComponent();
  58. base.OnInit(e);
  59. }
  60. /// <summary>
  61. /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  62. /// 此方法的内容。
  63. /// </summary>
  64. private void InitializeComponent()
  65. {    
  66. this.Load += new System.EventHandler(this.Page_Load);
  67. }
  68. #endregion
  69. }
  70. }