Is there any way to run specified web pages automatically
at a given time, e.g. midnight? The intention is to run
an ASP page which manages DB, Email notification, etc.
Any other good way to accomplish this?
Thank you for your advice to a novice.

Re: scheduled autorun web page? by Paul

Paul
Fri Nov 07 05:58:40 CST 2003

On Fri, 7 Nov 2003 03:48:16 -0800, "Ken"
<anonymous@discussions.microsoft.com> wrote:

>Is there any way to run specified web pages automatically
>at a given time, e.g. midnight? The intention is to run
>an ASP page which manages DB, Email notification, etc.
>Any other good way to accomplish this?
>Thank you for your advice to a novice.

Try this :

http://www.powerasp.com/content/hintstips/schedule-global.asp


Regards,

Paul Lynch
MCSE

Re: scheduled autorun web page? by gerry

gerry
Fri Nov 07 06:11:17 CST 2003

an much simpler and vastly more reliable way is to create a simple vbscript
to request the page via xmlhttp
then just use windows scheduler to execute the script at the required times.


dim http
set http=createobject("microsoft.xmlhttp")
http.open "GET" , "http://localhost/somesite/someautrunpage.asp" , false
http.send






"Paul Lynch" <paul.lynch@nospam.com> wrote in message
news:372nqvkar8jtdgvrua4u8fobrannl31n0b@4ax.com...
> On Fri, 7 Nov 2003 03:48:16 -0800, "Ken"
> <anonymous@discussions.microsoft.com> wrote:
>
> >Is there any way to run specified web pages automatically
> >at a given time, e.g. midnight? The intention is to run
> >an ASP page which manages DB, Email notification, etc.
> >Any other good way to accomplish this?
> >Thank you for your advice to a novice.
>
> Try this :
>
> http://www.powerasp.com/content/hintstips/schedule-global.asp
>
>
> Regards,
>
> Paul Lynch
> MCSE



Re: scheduled autorun web page? by Tom

Tom
Fri Nov 07 08:25:52 CST 2003

Or just re-write the ASP as a VBS and schedule it ...
http://www.aspfaq.com/show.asp?id=2143

--
Tom Kaminski IIS MVP
http://www.iistoolshed.com/ - tools, scripts, and utilities for running IIS
http://mvp.support.microsoft.com/
http://www.microsoft.com/windowsserver2003/community/centers/iis/

"gerry" <germ@hotmail.com> wrote in message
news:uOJWmkSpDHA.3040@TK2MSFTNGP11.phx.gbl...
> an much simpler and vastly more reliable way is to create a simple
vbscript
> to request the page via xmlhttp
> then just use windows scheduler to execute the script at the required
times.
>
>
> dim http
> set http=createobject("microsoft.xmlhttp")
> http.open "GET" , "http://localhost/somesite/someautrunpage.asp" , false
> http.send
>
>
>
>
>
>
> "Paul Lynch" <paul.lynch@nospam.com> wrote in message
> news:372nqvkar8jtdgvrua4u8fobrannl31n0b@4ax.com...
> > On Fri, 7 Nov 2003 03:48:16 -0800, "Ken"
> > <anonymous@discussions.microsoft.com> wrote:
> >
> > >Is there any way to run specified web pages automatically
> > >at a given time, e.g. midnight? The intention is to run
> > >an ASP page which manages DB, Email notification, etc.
> > >Any other good way to accomplish this?
> > >Thank you for your advice to a novice.
> >
> > Try this :
> >
> > http://www.powerasp.com/content/hintstips/schedule-global.asp
> >
> >
> > Regards,
> >
> > Paul Lynch
> > MCSE
>
>



Re: scheduled autorun web page? by Kristofer

Kristofer
Fri Nov 07 08:49:08 CST 2003

I agree with Tom, that's what i would do!

--
Regards,
Kristofer Gafvert
Reply to newsgroup only. Remove NEWS if you must reply by email, but please
do not.


"Tom Kaminski [MVP]" <tomk (A@T) mvps (D.O.T) org> wrote in message
news:bog9rd$562@kcweb01.netnews.att.com...
> Or just re-write the ASP as a VBS and schedule it ...
> http://www.aspfaq.com/show.asp?id=2143
>
> --
> Tom Kaminski IIS MVP
> http://www.iistoolshed.com/ - tools, scripts, and utilities for running
IIS
> http://mvp.support.microsoft.com/
> http://www.microsoft.com/windowsserver2003/community/centers/iis/
>
> "gerry" <germ@hotmail.com> wrote in message
> news:uOJWmkSpDHA.3040@TK2MSFTNGP11.phx.gbl...
> > an much simpler and vastly more reliable way is to create a simple
> vbscript
> > to request the page via xmlhttp
> > then just use windows scheduler to execute the script at the required
> times.
> >
> >
> > dim http
> > set http=createobject("microsoft.xmlhttp")
> > http.open "GET" , "http://localhost/somesite/someautrunpage.asp" , false
> > http.send
> >
> >
> >
> >
> >
> >
> > "Paul Lynch" <paul.lynch@nospam.com> wrote in message
> > news:372nqvkar8jtdgvrua4u8fobrannl31n0b@4ax.com...
> > > On Fri, 7 Nov 2003 03:48:16 -0800, "Ken"
> > > <anonymous@discussions.microsoft.com> wrote:
> > >
> > > >Is there any way to run specified web pages automatically
> > > >at a given time, e.g. midnight? The intention is to run
> > > >an ASP page which manages DB, Email notification, etc.
> > > >Any other good way to accomplish this?
> > > >Thank you for your advice to a novice.
> > >
> > > Try this :
> > >
> > > http://www.powerasp.com/content/hintstips/schedule-global.asp
> > >
> > >
> > > Regards,
> > >
> > > Paul Lynch
> > > MCSE
> >
> >
>
>