I\'m trying to implement a logic for my .NET MVC application where I would trigger scheduled tasks in my application on a following basis:
First scheduled ta
For scheduling tasks in ASP.NET MVC you have several options:
Be careful if you try to implement a custom solution yourself, as any exception in a thread not associated with a request would halt the entire process.