ASP.NET 的调度程序?
我想每天晚上在某种任务或调度程序中运行一些应用程序代码。框架中有内置功能吗?如果没有,有什么简单的第三方框架可以进行调度?
谢谢
I want to run some of my apps code every night in some sort of task or scheduler. Is there any build in functionality in the framework? If not, whats an easy 3rd party framework to get scheduling?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以创建控制台应用程序并将其作为计划任务运行。或者,您可以考虑使用 Quartz.Net,它是 Java Quartz 的一个端口,是一个用于调度作业的框架。
无论哪种方式,您的成品都可能是一个计划与计划任务一起运行的控制台应用程序,或者是作为 Windows 服务的类库。 ASP.NET 本身不会进行调度。
You can create a console application and run it as a scheduled task. Alternatively you could look at using Quartz.Net which is a port of the Java Quartz, a framework for scheduling jobs.
Either way your finished product will likely be a console application that is scheduled to run with scheduled tasks, or a class library as a Windows Service. ASP.NET its self won't do the scheduling.
如果可以,您可以使用 IIS 7.5 应用程序预热模块:http://blogs.iis.net/thomad/archive/2009/10/14/now-available-the-iis-7-5-应用程序热身模块.aspx
If you can, you could use IIS 7.5 Application Warm-Up Module : http://blogs.iis.net/thomad/archive/2009/10/14/now-available-the-iis-7-5-application-warm-up-module.aspx