ASP.NET 的调度程序?

发布于 2024-10-31 08:37:42 字数 79 浏览 2 评论 0原文

我想每天晚上在某种任务或调度程序中运行一些应用程序代码。框架中有内置功能吗?如果没有,有什么简单的第三方框架可以进行调度?

谢谢

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

囍笑 2024-11-07 08:37:42

您可以创建控制台应用程序并将其作为计划任务运行。或者,您可以考虑使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文