I'm working a a project for a new web app. I'm identifying the key points of functionality, and one thing that I clearly don't know how to approach is as follows:
Once per minute the server needs to run a series of calcs on its data, and post new derived summaries.
So in essence what I need is a way to run a server side script once per minute, reliably, even when users aren't active.
I'm using ASP.NET 3.5, C# for the web interface. Using SQL 2005 for the data back end.
I suppose all the data thats being changed is SQL side, so the script could function completely there if thats more workable.
Thanks for any suggestions.