I have a date and time in code, that i want to invoke a specific method. This date and time also might be recurrence. I will run this on IIS server if that's matter.
Is there a way in C# to do it?
|
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
Take a look at Quartz.net I think you would probably need to break your code out into a service of some kind. Running scheduled task isn't what IIS is meant for. |
|||
|
|
|
You might want a Timer, the ElapsedEventHandler can call functions for you, and they can be set up to reoccur. |
|||||
|
|
Another tool is Visual Corn. I have used this in a production environment and works great! http://www.visualcron.com/ |
||||
|
|