mrblah
mrblah

Reputation: 103477

background task with an asp.net web application

Is this the technique to run a background job every x minutes: http://msdn.microsoft.com/en-us/library/system.threading.threadpool.queueuserworkitem%28VS.71%29.aspx

So would I load this in the global.asax?

Upvotes: 1

Views: 2508

Answers (3)

JonoW
JonoW

Reputation: 14229

No, Thread.QueueUserWorkItem is for queing up a single unit of work on a thread out of the thread-pool. Whilst this task is running you are taking a thread away from asp.net. The best way to execute scheduled tasks is probably through a windows service, but look into the method suggested by @Heinzi, can be suitable for site that don't have huge numbers of concurrent users.

Upvotes: 0

BobbyShaftoe
BobbyShaftoe

Reputation: 28499

Another method is to have a page that when accessed, does the task you intend to do. Then you setup some process (a lot of hosting providers provide such a mechanism in their control panel) that simple hits that page every X minutes and that forces the job to run.

Upvotes: 0

Related Questions