What is the equivalent to cron jobs in ASP.NET?

前端 未结 5 1139
面向向阳花
面向向阳花 2020-12-08 19:44

In PHP we have cron jobs, where the hosting server automatically picks up and executes a task as per the schedule given.

What would be a good alternative to use for

5条回答
  •  自闭症患者
    2020-12-08 20:14

    This is absolutely a hack, but you can simulate a cron service using ASP.NET callbacks. Here is an example of how to do it.

提交回复
热议问题