Reputation: 54113
My website needs to somehow do something every few minutes.
Essentially I get projects from another website. I then call one of my web pages and update.
Currently I'm making a console app for this but I'm wondering if there is a better way.
Thanks
Upvotes: 4
Views: 1513
Reputation: 203817
Use windows task scheduler to run the console app your writing at the appropriate times.
Upvotes: 2
Reputation: 16435
Depending on what needs to be done, there are a few options.
Upvotes: 1
Reputation: 10067
There are super cool, open source tool exist for creating a scheduled jobs in .NET
It called Quartz.NET.
I think currently is #1 tool for that tasks.
Upvotes: 4