I need to run a daily process at a given time. how to do it in ASP.NET/C#? web site is hosted in godaddy shared hosting server.
I've tried with timers but not working. I think this timers get reset with application pool recycling.
|
I need to run a daily process at a given time. how to do it in ASP.NET/C#? web site is hosted in godaddy shared hosting server. I've tried with timers but not working. I think this timers get reset with application pool recycling. |
|||
|
|
|
What I'd do is:
That's the best way I can think of. Depending on how GoDaddy sets your Application Pool your application might go "off" if a certain number of minutes elapse after a last request. If your timer would be set then, it just wouldn't trigger it. Like you mentioned, the AppPool would restart. When your other server requests the hidden URL, the AppPool will start, if it's down and you should be good. You can add logic to process the response for success / failure if that's the case. |
|||
|
|
|
You can use cache expiration to introduce recurring events. See this codeplex article for the approach (Simulate a Windows Service using ASP.NET to run scheduled jobs). |
|||
|
|
|
I've done this before. but I'm not sure whether its is the best way or not. What I have done is, I crated table in my database
then in the Global.axax in Application_BeginRequest section,
using the FirstTime is prevent running this code always. this way you can run a process daily. |
|||||
|