我们经常会在网站中加一些定时执行的任务,比如生成静态页、执行邮件发送等。
可以通过在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()
{
//执行的代码写在这里
}
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件!
如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
桃源资源网 Design By www.nqtax.com
暂无“asp.net中System.Timers.Timer的使用方法”评论...