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

前端 未结 5 1152
面向向阳花
面向向阳花 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:10

    Asp.Net and Web services are typically responsive. They wait and respond to requests. There are hacks to make them look like schedulers but the hacks are ugly beyond belief.

    You could use a Windows Service. Or write an executable and use the Windows Task Scheduler.

提交回复
热议问题