用于共享托管的 ASP.NET Web 表单应用程序的 Windows 调度程序替代方案

发布于 2024-08-16 07:09:33 字数 1539 浏览 6 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

·深蓝 2024-08-23 07:09:33

实现此目的的一种方法是..

您可以编写一个 Windows 服务,它将在给定时间段内循环调用您的应用程序 URL。从您的个人计算机或您主要[几乎 24x7] 在线的任何其他计算机安装并运行此服务。

另一种方法是..

使用网站正常运行时间检查服务。他们每隔一段时间就会调用您的 URL。有许多免费和付费服务。经过一番谷歌搜索后,我发现这个已经足够好了。

http://host-tracker.com/order-page/

One way to do this is..

You can write a windows service which will call your application url over a given period of time recurrently. Install and run this service from your personal computer or any other computer that you is mostly [almost 24x7] online.

Another way to this is..

use website uptime checking services. They call your URL at an interval. There are many free and paid services. I found this one to be good enough after some googling.

http://host-tracker.com/order-page/

小草泠泠 2024-08-23 07:09:33

您始终可以编写一个简单的 powershell 脚本来以特定的时间间隔执行 3 行代码,而不是 Windows 服务。

$ie = new-object -com "InternetExplorer.Application"
$ie.navigate("http://www.stackoverflow.com")
$ie.visible = $true

Instead of a Windows Service you could always just write a simple powershell script to execute at certain intervals, 3 lines of code.

$ie = new-object -com "InternetExplorer.Application"
$ie.navigate("http://www.stackoverflow.com")
$ie.visible = $true
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文