在 ASP.Net 4 中安排作业的最可靠方法
我们需要一种实用的方法(不仅仅是理论上)来在给定的时间或间隔内开始 ASP.NET 的工作。
该工作可能是运行 Web 服务、特定功能或执行页面。
ASP.Net 4 中有没有新的方法可以做到这一点?
或者在使用共享托管环境时除了使用 Windows 计划任务之外还有其他可靠的方法吗?
We need a practical way (not just in theory) to start a job in asp.net in a given time or in intervals.
the job could be to run a web service, a certain function or executing a page.
is there any new approach in ASP.Net 4 to do this?
or is there any reliable way other than using windows schedule tasks when using a shared hosting environment ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看看http://quartznet.sourceforge.net/
SO 上的这个线程描述了如何在 Asp.net 中使用它:如何将 Quartz.net 与 ASP.NET 结合使用
Take a look at http://quartznet.sourceforge.net/
This thread on SO describes how to use it in Asp.net: How to use Quartz.net with ASP.NET
如果您的托管公司阻止您在服务器上运行 Windows Scheduler,请使用任何在线任务计划服务,这些服务会按照您设置的计划向您的任何页面发出 HTTP 请求。
If your hosting company prevents you from running Windows Scheduler on the server, use any of online task schedule services that make HTTP requests to any of your pages on the schedule that you set.