Posted in Javascript onMarch 20, 2013
我们经常会在网站中加一些定时执行的任务,比如生成静态页、执行邮件发送等。
可以通过在Global.asax中这样设置来实现。
void Application_Start(object sender, EventArgs e) { // 在应用程序启动时运行的代码 System.Timers.Timer MT = new System.Timers.Timer(); MT.Enabled = true; MT.Interval = 1000; MT.Elapsed += new System.Timers.ElapsedEventHandler(MTimedEvent); } void MTimedEvent(object source, System.Timers.ElapsedEventArgs e) { //开始工作 StartWork(); } void StartWork() { //执行的代码写在这里 }
asp.net中System.Timers.Timer的使用方法
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@