ScheduleNotice.aspx.cs
上传用户:autodoor
上传日期:2022-08-04
资源大小:9973k
文件大小:2k
源码类别:

.net编程

开发平台:

Others

  1. using System;
  2. using System.Data;
  3. using System.Web.UI.WebControls;
  4. using System.Web.UI.HtmlControls;
  5. using qminoa.DA.Schedule;
  6. namespace qminoa.Webs.Schedule
  7. {
  8. public class ScheduleNotice : qminoa.Webs.PageBase
  9. {
  10. protected System.Web.UI.WebControls.Label lblTitle;
  11. protected System.Web.UI.WebControls.Label lblTotal;
  12. protected System.Web.UI.WebControls.Label Label1;
  13. protected System.Web.UI.HtmlControls.HtmlButton btnExit;
  14. private void Page_Load(object sender, System.EventArgs e)
  15. {
  16. this.PageBegin("我的日程",false);
  17. DataTable tipTB = (new ScheduleDA()).cpScheduleTip(Convert.ToInt16(this.Empid)).Tables[0];
  18. if(tipTB.Rows.Count > 0)
  19. {
  20. lblTitle.Text = "   您有" + tipTB.Rows.Count.ToString() + "个日程安排即将开始!";
  21. for(int i =0;i<tipTB.Rows.Count;i++)
  22. {
  23. DataRow row = tipTB.Rows[i];
  24. string schid = row["SchID"].ToString();
  25. string Subject = row["Subject"].ToString();
  26. string FDate_date = DateTime.Parse(row["FDate"].ToString()).Date.ToShortDateString();
  27. if(Subject.Length > 4)
  28. {
  29. Subject = Subject.Substring(0,4);
  30. Subject += ".."; 
  31. }
  32. lblTotal.Text += "<a  href=schaddup.aspx?reurl=schedule.aspx&id="+schid+"&day="+FDate_date+" title=显示日程安排详细信息 target='main'>";
  33. lblTotal.Text += "☉"+FDate_date+":"+" "+Subject+"</a><br>";
  34. }
  35. }
  36. }
  37. #region Web Form Designer generated code
  38. override protected void OnInit(EventArgs e)
  39. {
  40. //
  41. // CODEGEN:该调用是 ASP.NET Web 窗体设计器所必需的。
  42. //
  43. InitializeComponent();
  44. base.OnInit(e);
  45. }
  46. /// <summary>
  47. /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  48. /// 此方法的内容。
  49. /// </summary>
  50. private void InitializeComponent()
  51. {    
  52. this.Load += new System.EventHandler(this.Page_Load);
  53. }
  54. #endregion
  55. }
  56. }