I need to perform periodically a certain task in my asp.net app so did like this:
protected void Application_Start() { Worker.Start(); } ... public sta
If you want do do a scheduled work, why not use Windows Task Scheduler ?
Some info I found, may be useful: http://www.codeproject.com/KB/cs/tsnewlib.aspx
Kris