FluentScheduler在asp.net mvc下使用,本地调试能触发定时任务,但布置到IIS不能触发,求解.
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了FluentScheduler在asp.net mvc下使用,本地调试能触发定时任务,但布置到IIS不能触发,求解.相关的知识,希望对你有一定的参考价值。
以下为主要代码
public TimedTask()
Schedule(() =>
Task();
).ToRunEvery(1).Days().At(21, 00);
protected void Application_Start()
AreaRegistration.RegisterAllAreas();
FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
RouteConfig.RegisterRoutes(RouteTable.Routes);
BundleConfig.RegisterBundles(BundleTable.Bundles);
//定时任务
JobManager.Initialize(new TimedTask());
感谢大神,是IIS回收的问题吗?
以上是关于FluentScheduler在asp.net mvc下使用,本地调试能触发定时任务,但布置到IIS不能触发,求解.的主要内容,如果未能解决你的问题,请参考以下文章