ASP.NET通过Global.asax和Timer定时器定时运行后台代码

原文链接:http://www.cnblogs.com/jacktang/articles/1687504.html

ASP.NET通过Global.asax和Timer定时器定时运行后台代码

Global.asax文件

1.Application_Start方法添加
    // 在应用程序启动时运行的代码
    System.Timers.Timer myTimer = new System.Timers.Timer(60000);
    myTimer.Elapsed += new System.Timers.ElapsedEventHandler(OnTimedEvent);
    myTimer.Interval = 60000;
    myTimer.Enabled = true;

2.添加方法 
    private void OnTimedEvent(object source, System.Timers.ElapsedEventArgs e)
    {
        // 处理逻辑


    }

转载于:https://www.cnblogs.com/jacktang/articles/1687504.html

上一篇:SQL Server 中的over子句详解


下一篇:c#实现定时任务(Timer)