SH.
SH.

Reputation: 31

How to schedule a webpage to be executed on daily basis on shared hosting?

I i want to schedule an asp.net page on my hosting, how to achieve it?

for instance, i have a page named myservice.aspx runing on my website.com/myservice.aspx

i want to run this page on every 24 hours. any idea?

Upvotes: 0

Views: 903

Answers (4)

Chris
Chris

Reputation: 1453

i tried onlinecronjobs.com but i got some erros, then i tried setcronjob.com, and everything looks fine but i notice that the free account has an expiration of 31 days, and then I found this one, which looks very good and the free account for 5 jobs looks like it doesn't has any expiration, here is my suggestion:

http://cronless.com/

Thanks, Chris

Upvotes: 0

T1000
T1000

Reputation: 2941

You can use service like onlinecronjobs.com to execute pages.

Upvotes: 3

Chris
Chris

Reputation: 2991

I'd rather go with Andy's solution, but I just thought of a weird one:

Set a javascript timer on the page to refresh the page every 24 hours. Then leave the page open in a browser on a computer you'll never log out of.

Upvotes: -2

Andy White
Andy White

Reputation: 88355

You could setup a scheduled task with a little .bat file that just opens the web page.

(Not sure if that's what you mean by "run" the page)

Upvotes: 1

Related Questions