在 ASP.NET 网站上安排作业,无需购买专用服务器
如何在共享托管服务器上按照配置的计划时间执行各种任务(例如电子邮件警报/发送新闻信件)?
How can I perform various task (such as email alert/sending news letter) on a configured schedule time on a shared hosting server?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这是我过去用来执行此类操作的 Global.ascx.cs 文件,使用缓存过期来触发计划任务:
目前,该文件每 2 分钟触发一次操作,但这可以在代码。
Here's a Global.ascx.cs file I've used to do this sort of thing in the past, using cache expiry to trigger the scheduled task:
At the moment, this fires off your actions every 2 minutes, but this is configurable in the code.
这里有人通过在 global.asax 中创建线程来做到这一点。 听起来他们在这方面取得了成功。 我自己从未测试过这种方法。
在我看来,这将是比重载缓存过期机制更好的选择。
Somone on here was doing this by creating threads in global.asax. Sounded like they were having success with it. I've never tested this approach myself.
This in my opinion would be a better option then overloading the cache expiration mechanism.
您可以在共享主机上使用ATrigger调度服务,没有任何问题。
还可以使用 .Net 库来创建计划任务,而无需任何开销。
免责声明:我是 ATrigger 团队的一员。 这是一个免费软件,我没有任何商业目的。
You can use ATrigger scheduling service on a shared hosting without any problem.
A .Net library is also available to create scheduled tasks without overhead.
Disclaimer: I was among the ATrigger team. It's a freeware and I have not any commercial purpose.