How is it possible to run a procedure/job say at 9.00 am every morning. I believe tere is no timer control in asp.net as it is in win app.
Thanks
Printable View
How is it possible to run a procedure/job say at 9.00 am every morning. I believe tere is no timer control in asp.net as it is in win app.
Thanks
What is it you want the "application" to do. I assume you want it to run on the server? Then why not create a windows service. And set it to fire each second and compare the Now value with a preset value (like 9 am)... Im sure there is a more clever way to do it, but it is easy and it works...
/Henrik