try this app: http://www.visualcron.com/
Main Topics
Browse All TopicsHi all,
I need my ASP.NET site to check some values in a database every X minutes, and do things with them.
I need to make it in a way that will always work when the IIS is started, no matter if there are any users logged in or whatever.
Also I prefer to write it in ASP.NET (and not code some other program running on the server).
What do you suggest?
Thanks,
Lazar
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
try this app: http://www.visualcron.com/
Ok, so you are saying I can't build it into my existing ASP.NET code.
I think I will go with the windows scheduler, because it seems to have all the options I need (it can be configured to run some app every X minutes).
As for the VisualCron, this app looks really good, but its advanced features won't be of any use for me in this case. Thanks anyway.
http://msdn.microsoft.com/
here is what ms has to say about it. ALthough this may be over kill there are some good code project articles on using web services to schedule tasks with asp.net.
o_Opie
Business Accounts
Answer for Membership
by: AzraSoundPosted on 2006-10-02 at 09:42:27ID: 17644768
ASP.NET is not going to do you any good since the code is never executed unless the page is being requested by a user. You need to write a program to run as a separate process on the server, or make use of the Windows scheduler, or perhaps it can all be done within your database scheduler (assuming it has one, such as SQL Server Agent).