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

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. /// PromptSchedule 的摘要说明。
  16. /// </summary>
  17. public class PromptSchedule : System.Web.UI.Page
  18. {
  19. protected System.Web.UI.HtmlControls.HtmlGenericControl DIV1;
  20. protected System.Data.SqlClient.SqlConnection MyConnection;
  21. protected System.Data.SqlClient.SqlDataAdapter MyCommand;
  22. protected System.Data.DataSet ds;
  23. protected System.Web.UI.WebControls.DataGrid MyDataGrid;
  24. protected System.Web.UI.HtmlControls.HtmlGenericControl DIV3;
  25. protected System.Web.UI.WebControls.DataGrid MyDataGrid1;
  26. protected System.Web.UI.HtmlControls.HtmlGenericControl DIV2;
  27. private void Page_Load(object sender, System.EventArgs e)
  28. {
  29. MyConnection=new SqlConnection(System.Configuration.ConfigurationSettings.AppSettings["ConnectionString"]);
  30. if(MyConnection.State.ToString()=="Closed")
  31. MyConnection.Open();
  32. ds= new DataSet();
  33. SqlCommand MyCommand0 = new SqlCommand("PersonID",MyConnection);
  34. MyCommand0.CommandType = CommandType.StoredProcedure;
  35. MyCommand0.Parameters.Add(new SqlParameter("@Name", SqlDbType.NVarChar, 50));
  36. MyCommand0.Parameters["@Name"].Value = User.Identity.Name;
  37. SqlDataReader myReader =  MyCommand0.ExecuteReader();
  38. string PID="";
  39. try
  40. {
  41. while(myReader.Read()) 
  42. {
  43. PID = myReader.GetInt32(0).ToString();
  44. }
  45. myReader.Close();
  46. }
  47. finally 
  48. {
  49. }
  50. SqlDataAdapter MyCommand = new SqlDataAdapter("PromptSchedule",MyConnection);
  51. MyCommand.SelectCommand.CommandType = CommandType.StoredProcedure;
  52. MyCommand.SelectCommand.Parameters.Add(new SqlParameter("@PersonID", SqlDbType.Int, 4));
  53. MyCommand.SelectCommand.Parameters["@PersonID"].Value = PID;
  54. MyCommand.Fill(ds,"Schedule");
  55.             MyDataGrid.DataSource=ds.Tables["Schedule"].DefaultView;
  56. MyDataGrid.DataBind();
  57. if(ds.Tables["Schedule"].Rows.Count<=0)
  58.                 MyDataGrid.Visible=false;
  59. if(ds.Tables["Schedule"].Rows.Count>0)
  60. DIV1.InnerHtml ="<B>今天的日程计划:</B>"+ds.Tables["Schedule"].Rows.Count+"<B>项!</B>";
  61. SqlDataAdapter MyCommand1 = new SqlDataAdapter("PromptSchedule1",MyConnection);
  62. MyCommand1.SelectCommand.CommandType = CommandType.StoredProcedure;
  63. MyCommand1.SelectCommand.Parameters.Add(new SqlParameter("@PersonID", SqlDbType.Int, 4));
  64. MyCommand1.SelectCommand.Parameters["@PersonID"].Value = PID;
  65. MyCommand1.Fill(ds,"Schedule1");
  66. MyDataGrid1.DataSource=ds.Tables["Schedule1"].DefaultView;
  67. MyDataGrid1.DataBind();
  68. if(ds.Tables["Schedule1"].Rows.Count<=0)
  69. MyDataGrid1.Visible=false;
  70. if(ds.Tables["Schedule1"].Rows.Count>0)
  71. DIV3.InnerHtml ="未完成的日程计划:"+ds.Tables["Schedule1"].Rows.Count+"项!";
  72. MyConnection.Close();
  73. // 在此处放置用户代码以初始化页面
  74. }
  75. #region Web 窗体设计器生成的代码
  76. override protected void OnInit(EventArgs e)
  77. {
  78. //
  79. // CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
  80. //
  81. InitializeComponent();
  82. base.OnInit(e);
  83. }
  84. /// <summary>
  85. /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  86. /// 此方法的内容。
  87. /// </summary>
  88. private void InitializeComponent()
  89. {    
  90. this.Load += new System.EventHandler(this.Page_Load);
  91. }
  92. #endregion
  93. }
  94. }