0

I want to create a scheduler which does following

Can you please help to achieve it?

akhan
  • 63
  • 1
  • 3
  • 10

1 Answers1

0

The simplest answer is to make a console program, and just set it as a scheduled task that runs every 5 minutes.

If you have to make it part of the web project, then there are other questions about doing that:

Community
  • 1
  • 1
David
  • 34,223
  • 3
  • 62
  • 80
  • Can I achieve the functionality using global.asax? – akhan May 02 '14 at 16:34
  • Take a look at the [Revalee](http://revalee.sageanalytic.com) open source project. The project was designed specifically for scheduling web tasks and it includes async processing as well. The source code is on [GitHub](https://github.com/SageAnalytic/Revalee). – László Koller May 03 '14 at 13:57