0

I have a web application hosted on IIS server. I want to schedule a task to run the application (call routine.aspx) every 1 hour. I do not need to pass any argument or do not need any browser. Just want the application to run every 1 hour. How do I do that? If I use Windows Task Scheduler, how will the "Actions" tab look like?

Sam
  • 47
  • 1
  • 6

1 Answers1

0

Timer with a duration of 1 Hour will be sufficient for your requirement. Just follow this link https://msdn.microsoft.com/en-us/library/system.timers.timer(v=vs.110).aspx and try to implement it. You Can invoke your required method or snippet of code that is supposed to run at every one hour..

Lara
  • 2,821
  • 7
  • 39
  • 72