Scheduled Events in ASP.NET?
api, asp.net, c#, notifications
Solution
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.
Problem
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