ASP.NET中执行耗时操作的解决方案

maro

在ASP.NET中可以利用多线程方式来达到同样的目的。多线程

后台修改如下:

在程序全局事件中:

代码 protected void Application_Start(object sender, EventArgs e) { SchedulerConfiguration config = new SchedulerConfiguration(1000 * 60 * 60 * 23);

config.Jobs.Add(new .EmailSendingJob());

Scheduler scheduler = new Scheduler(config);

schedulerThread = new System.Threading.Thread(new System.Threading.ThreadStart(scheduler.Start)); schedulerThread.Start();

}

protected void Application_End(object sender, EventArgs e) { try { //程序退出时进行销毁 if (schedulerThread != null) { schedulerThread.Abort(); } } catch { //operation ; } }

方法,就能实现类似windows计划任务的功能。从而实现0干预的管理。