Wednesday, January 5, 2011

Run a Scheduled Task in ASP.NET

The Timer class, found in the System.Threading namespace, is a wonderfully useful, but less well-known class in the .NET Framework, at least for Web developers. Once created, the Timer will invoke the specified callback on a thread from the ThreadPool at a configurable interval. This means you can set up code to execute without an incoming request to your ASP.NET application, an ideal situation for background processing. You can do work such as indexing or sending e-mail in this background process too.

Source: http://msdn.microsoft.com/hi-in/magazine/cc163854%28en-us%29.aspx

No comments:

Post a Comment