monkeylee
monkeylee

Reputation: 965

Schedule asp.net page on server

what is the best way to schedule an asp.net page to run at a set interval on your server without using a third party cron service? is there a way to do this with an IIS addin or script with windows task scheduler

Upvotes: 1

Views: 681

Answers (3)

Brosto
Brosto

Reputation: 4565

I don't know of any scheduling abilities in IIS, but you could enable/disable the service using scheduled tasks. Not sure if you would consider that 3rd party or not....

Upvotes: 0

Shyju
Shyju

Reputation: 218892

I would think about putting that logic(the code in the asp.net page) in a windows service (which we write) which has a timer.

Upvotes: 0

Jerod Venema
Jerod Venema

Reputation: 44652

Windows Task Scheduler + wget for windows.

http://gnuwin32.sourceforge.net/packages/wget.htm

Upvotes: 3

Related Questions