I have a site that I’m working on. Say I need something to run every… say… 30 minutes, how would I get just a simple thing to run like that?
EDIT
I’ll be hosting this online with another company. This is why I am not making it as a separate scheduled program.
If you need a process to be run at pre-defined intervals you might be better off using the windows task scheduler, or to create a windows service with a timer. ASP.NET applications aren’t ideal for doing this sort of thing, since they are vulnerable to restarts and so you can’t guarantee that the process will run at the given interval.