Run ASP without client visit? Automating backup and status check?

N

Noozer

I know ASP isn't the best way to do this, but is it possible???

I've written an application in ASP that manipulates an MS SQL database. We'd
like to have our application automatically backup the database at specific
times. We'd also like to generate an email report once a day on the statics
of our database.

Is this possible with ASP? How else could it be done, considering our
application is all HTML/ASP?

Thanks for any input!!!
 
E

Evertjan.

Noozer wrote on 06 feb 2006 in microsoft.public.inetserver.asp.general:
I've written an application in ASP that manipulates an MS SQL
database. We'd like to have our application automatically backup the
database at specific times. We'd also like to generate an email report
once a day on the statics of our database.

Is this possible with ASP? How else could it be done, considering our
application is all HTML/ASP?

Do a GET from a scheduled Cscript:


With CreateObject("MSXML2.XMLHTTP")
.open "GET", "http://tst.com/doit.asp", True
.send
End With
 
P

Patrice

Defined as a server side task (and as a VBS script for exemple).

You should also be able to find sites that are able to call your url at
given times (basically a kind of "webcron") if you don't have access to the
server.
 
A

Anthony Jones

You could use script in a Scheduled task.

The script could use the MSXML2.ServerXMLHTTP object to post to the website
to trigger off activity.

Anthony.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,755
Messages
2,569,536
Members
45,020
Latest member
GenesisGai

Latest Threads

Top