Mobile app version of vmapp.org
Login or Join
Nickens628

: Run server side script on schedule for hosted asp.net application I'm in the process of deploying my first website which is written is ASP.NET. I need to run a server side script at set intervals

@Nickens628

Posted in: #AspNet #ServerSideScripting #WebHosting

I'm in the process of deploying my first website which is written is ASP.NET. I need to run a server side script at set intervals during the day which updates a database even if there is nobody using the site.

I was led to believe that using Windows task scheduler would be the best option but now I've joined a hosting company the layout is not really how I was expecting. It's a shared hosting with basic FTP and no apparent built in task scheduler.

The hosting company support is not very good and haven't been able to advise how I could do this so hoped to get help here on options before I consider changing company. [The hosting company starts with 1 and ends with 1 :)]

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Nickens628

1 Comments

Sorted by latest first Latest Oldest Best

 

@Heady270

From windows scheduler alternative for an asp.net webform application which is shared hosting on StackOverflow posted by this. __curious_geek:


You can write a windows service which will call your application url over a given period of time recurrently. Install and run this service from your personal computer or any other computer that you is mostly [almost 24x7] online.

Another way to this is use website uptime checking services. They call your URL at an interval. There are many free and paid services.


From Windows Shared hosting - custom scheduled task on StackOverflow posted by GvS


Jeff Atwood has created blog entry on this. In short:


Add an item to the cache
Make it expire on your wanted interval
Add a trigger to execute when the cache expires
Re-add your item in the trigger

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme