How to Run ASP File Daily?
How to Run ASP File Daily?
am 22.01.2007 17:37:29 von vunet.us
I am hosting a website on Windows 2003 server, IS6, MS SQL Server. I
have one ASP file I would like to run daily. How can I do it if I do
not have acces to OS's management (to use, for example, task scheduler)
and I do not want to include this page within other pages of the
website to be run (because that may slow down the page loading for
users)?
Thank you
Re: How to Run ASP File Daily?
am 23.01.2007 06:18:01 von Andreas Krueger
vunet.us@gmail.com schrieb :
> I am hosting a website on Windows 2003 server, IS6, MS SQL Server. I
> have one ASP file I would like to run daily. How can I do it if I do
> not have acces to OS's management (to use, for example, task scheduler)
> and I do not want to include this page within other pages of the
> website to be run (because that may slow down the page loading for
> users)?
> Thank you
Cron it from home by a browserquerry :-)
--
************************************************************ **********
Persönliche Antworten bitte an a99b00c53@remote.dyndns.info, die Replyadresse wird nicht gelesen !
Mails bitte als Nur Text Senden !!
Send Private-Messages only to a99b00c53@remote.dyndns.info, the reply adress will not be read !
Please send only as Plaintext !!
Re: How to Run ASP File Daily?
am 23.01.2007 09:58:57 von Anthony Jones
wrote in message
news:1169483849.588889.29140@51g2000cwl.googlegroups.com...
> I am hosting a website on Windows 2003 server, IS6, MS SQL Server. I
> have one ASP file I would like to run daily. How can I do it if I do
> not have acces to OS's management (to use, for example, task scheduler)
> and I do not want to include this page within other pages of the
> website to be run (because that may slow down the page loading for
> users)?
> Thank you
>
Set up a scheduled task on a server or workstation you do have access to.
Use XMLHTTP in a script file to visit the page.
Re: How to Run ASP File Daily?
am 23.01.2007 23:28:50 von denoxis
Here is an alternative in case (1) you desperately need to do that on
server side (2) visitors come to your website pretty often.
In global.asa, session_onStart check the last_run_time (which could be
a field in a table in your MS SQL) if it has been a day execute your
ASP file, and update the field.
I still prefer the way others suggested above though.
Deniz
vunet.us@gmail.com wrote:
> I am hosting a website on Windows 2003 server, IS6, MS SQL Server. I
> have one ASP file I would like to run daily. How can I do it if I do
> not have acces to OS's management (to use, for example, task scheduler)
> and I do not want to include this page within other pages of the
> website to be run (because that may slow down the page loading for
> users)?
> Thank you