当前位置: 代码迷 >> ASP.NET >> C# Global.asax 应用类有关问题
  详细解决方案

C# Global.asax 应用类有关问题

热度:9787   发布时间:2013-02-25 00:00:00.0
C# Global.asax 应用类问题
我这边使用 Global.asax 创建定时器。用一个XML保存需要执行的时间,调试通过了。 但在服务器上,有时可以有时不行~!
有哪位大哥这方面有经验的请指教~~~~~~  

部分代码如下:
C# code
protected void Application_Start(object sender, EventArgs e)        {            //创建定时器            System.Threading.Thread myTimer = new System.Threading.Thread(new System.Threading.ThreadStart(TimeCustomService));            myTimer.Start();        }        /// <summary>        /// 定时器方法,多种调用        /// </summary>        public void TimeCustomService()         {            try            {                int seed = 1000;//设置间隔秒数                //以下使用System.Timers.Timer类                System.Timers.Timer myTimer = new System.Timers.Timer(seed);  //实例化Timer类                myTimer.Enabled = true;  //是否执行System.Timers.Timer.Elapsed事件;                myTimer.Elapsed += new System.Timers.ElapsedEventHandler(myTimer_Function); //到达时间的时候执行事件myTimer_Function;                myTimer.AutoReset = true;  //设置是执行一次(false)还是一直执行(true);            }            catch (Exception)            {            }        }


------解决方案--------------------------------------------------------
参考.
------解决方案--------------------------------------------------------
应用程序生命周期结束~ 程序资源被回收了~
IIS定期回收线程资源
  相关解决方案