按照你的說法,用timer最符合你的要求。在Global檔案的Application_Start中建立一個timer,
System.Timers.Timer timer = new System.Timers.Timer();
timer.Enabled = true;
timer.Interval = 60000;//Execution interval time in milliseconds
timer.Start();
timer.Elapsed += new System.Timers.ElapsedEventHandler(Timer1_Elapsed);
private void Timer1_Elapsed(object sender, System.Timers.ElapsedEventArgs e)
{
// Get hour, minute second, and start executing a program if it is equal to a certain value.
int intHour = e.SignalTime.Hour;
int intMinute = e.SignalTime.Minute;
int intSecond = e.SignalTime.Second;
// Customize the time; for example, execute a function at 10:30:00
int iHour = 10;
int iMinute = 30;
int iSecond = 00;
// Set to execute once every second
if (intSecond == iSecond)
{
Console.WriteLine("Execute once every second at the beginning.");
}
// Set start execution at 30 minutes every hour
if (intMinute == iMinute && intSecond == iSecond)
{
Console.WriteLine("Execute once every 30 minutes of the hour.");
}
// Set every day at 10:30: 00 to start executing the program
if (intHour == iHour && intMinute == iMinute && intSecond == iSecond)
{
Console.WriteLine("Start execution at 10:30 every day.");
}
}
================================================================
定時器的建立很簡單,只要在Asp.net的Global.asax中的Application_Start方法中加入如下代碼就可以了。但本人我推薦推薦,對於一個Web網站來說,它所提供的是讓使用者去瀏覽它,但不是定時的去執行某樣操作,如果你的網站已經達到一定的流量,請千萬不要這樣子做,把需要定時執行的操作寫成服務吧。
下面我們來講下如何在Asp.net中加定時器,首先在Global.asax裡建立一個方法,當然,你其它建立一個類,或者在已有類中寫也是一樣的。代碼如下:
void demo_Elapsed(object sender, ElapsedEventArgs e)
{//需要執行的操作}
寫完demo_Elapsed這個方法之後,就在Application_Start方法下添加如下代碼:
Timer objTimer = new Timer();
objTimer.Interval = 1 * 1000;//每秒執行一次(這裡單位是毫秒)
objTimer.Enabled = true;
objTimer.Elapsed += new ElapsedEventHandler(demo_Elapsed);//demo_Elapsed就是需要調用的方法
到此就已經完成了。
如果我們想指定一個時間來執行程式的話,我們可以從ElapsedEventArgs中取得,代碼如下:
int hour = e.SignalTime.Hour;//時
int minute = e.SignalTime.Minute;//分
int second = e.SignalTime.Second;//秒
得到了時、分、秒之後,接下來的操作就簡單了,只要對比你指定的時間就行了,代碼我就不寫了。