?? schedulenotice.aspx.cs
字號:
using System;
using System.Data;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
using qminoa.DA.Schedule;
namespace qminoa.Webs.Schedule
{
public class ScheduleNotice : qminoa.Webs.PageBase
{
protected System.Web.UI.WebControls.Label lblTitle;
protected System.Web.UI.WebControls.Label lblTotal;
protected System.Web.UI.WebControls.Label Label1;
protected System.Web.UI.HtmlControls.HtmlButton btnExit;
private void Page_Load(object sender, System.EventArgs e)
{
this.PageBegin("我的日程",false);
DataTable tipTB = (new ScheduleDA()).cpScheduleTip(Convert.ToInt16(this.Empid)).Tables[0];
if(tipTB.Rows.Count > 0)
{
lblTitle.Text = " 您有" + tipTB.Rows.Count.ToString() + "個日程安排即將開始!";
for(int i =0;i<tipTB.Rows.Count;i++)
{
DataRow row = tipTB.Rows[i];
string schid = row["SchID"].ToString();
string Subject = row["Subject"].ToString();
string FDate_date = DateTime.Parse(row["FDate"].ToString()).Date.ToShortDateString();
if(Subject.Length > 4)
{
Subject = Subject.Substring(0,4);
Subject += "..";
}
lblTotal.Text += "<a href=schaddup.aspx?reurl=schedule.aspx&id="+schid+"&day="+FDate_date+" title=顯示日程安排詳細(xì)信息 target='main'>";
lblTotal.Text += "☉"+FDate_date+":"+" "+Subject+"</a><br>";
}
}
}
#region Web Form Designer generated code
override protected void OnInit(EventArgs e)
{
//
// CODEGEN:該調(diào)用是 ASP.NET Web 窗體設(shè)計(jì)器所必需的。
//
InitializeComponent();
base.OnInit(e);
}
/// <summary>
/// 設(shè)計(jì)器支持所需的方法 - 不要使用代碼編輯器修改
/// 此方法的內(nèi)容。
/// </summary>
private void InitializeComponent()
{
this.Load += new System.EventHandler(this.Page_Load);
}
#endregion
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -