Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
8  
The simplest solution is to create a console application and schedule it using the Windows Task scheduler. Why reinvent the wheel? – Heinzi Feb 16 '12 at 16:05
This topic has been answered a lot of SO, I suggest doing a search to see what has been said before – Peter Monks Feb 16 '12 at 16:07
I did. all of them referce me to the windows scheduler or to some other frameowrks. I really do need a simple thing. – Ido Feb 16 '12 at 16:11

closed as not a real question by casperOne Feb 17 '12 at 21:55

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.

3 Answers

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.

share|improve this answer

You might want a Timer, the ElapsedEventHandler can call functions for you, and they can be set up to reoccur.

share|improve this answer
Timer requires to provide him with time in milliseconds. I have DateTime – Ido Feb 16 '12 at 16:19
TimeSpan timeToDate = yourDateTime - DateTime.Now; then use timeToDate.TotalMilliseconds – LightLabyrinth Feb 16 '12 at 16:25

Another tool is Visual Corn. I have used this in a production environment and works great! http://www.visualcron.com/

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.