Ask a Question related to ASP Database, Design and Development.
-
Rene Aube #1
Getting HTML content from one Server and Saving it on another Server
Hi everyone,
I'm incharge of updating the stats on a chl hockey teams Web Site. I
would like to know if there is a way to be able to save
the content of the CHL Statistics WebPage on our Server and using it
to update our Microsoft Access 2000 database.
If it possible, then I would take the content of that page. Execute
some code that will take this information an place it in our
database on our server. By doing this, our Team WebSite would be
update automaticaly at a time that I specify on our server.
At this time, I have to open the CHL Statistics WebPage. Then Save the
HTML page as a txt file, upload it on our server via FTP, then execute
my my code that places it in our database.
Could you send your suggestions to [email]rene.aube@gnb.ca[/email]?
Any help would be greatly appreciated and Thank You in advance.
Rene Aube
Rene Aube Guest
-
display content from another server
We have a site (i.e. www.mysite.com) running CF MX 6.1. We have another (Linux) server that is running a cgi (perl) blog application at another... -
saving files inn CS to server
having trouble saving files in photoshop CS to a server, it gives me a message saying cannot save because of disk error, but it does save it anyway.... -
Saving of an swf file to a server
Hi all, Thank you for the reply. I understand that saving the image of the changed swf file onto the server is not something which is simple. But... -
Saving to a file server (XP and PS7)
Search trough the forum and you'll find this is a very common problem that many people are having. Best advice I can give, only try saving with one... -
saving pdf file to sql server
Hi group, I have an web application where the user can upload a pdf file. This file is stored in a table, in a column of type ntext. The user... -
Bob Barrows #2
Re: Getting HTML content from one Server and Saving it on another Server
Rene Aube wrote:
There are many asp tutorials on the web that describe how to do this> Hi everyone,
>
> I'm incharge of updating the stats on a chl hockey teams Web Site. I
> would like to know if there is a way to be able to save
> the content of the CHL Statistics WebPage on our Server and using it
> to update our Microsoft Access 2000 database.
>
> If it possible, then I would take the content of that page. Execute
> some code that will take this information an place it in our
> database on our server. By doing this, our Team WebSite would be
> update automaticaly at a time that I specify on our server.
>
> At this time, I have to open the CHL Statistics WebPage. Then Save the
> HTML page as a txt file, upload it on our server via FTP, then execute
> my my code that places it in our database.
>
> Could you send your suggestions to [email]rene.aube@gnb.ca[/email]?
>
> Any help would be greatly appreciated and Thank You in advance.
>
> Rene Aube
(asp101, learnasp, 4guysfromrolla, etc.). Basically you use a Form which you
submit to either another web page or to itself. The receiving page use ADO
to update the database, and sends a response back to the client.
HTH,
Bob Barrows
--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.
Bob Barrows Guest
-
Mark Schupp #3
Re: Getting HTML content from one Server and Saving it on another Server
Use MSXML2.ServerHTTP to send a request to the stats site and return the
response as a string. Quickest way to get an example is to go to
[url]www.aspfaq.com[/url] and search for "form post". Check the articles about
simulating a form post on the server. I'd give you a specific article but
the site is down at the moment. You can find similar examples at other ASP
sites.
--
Mark Schupp
Head of Development
Integrity eLearning
[url]www.ielearning.com[/url]
"Rene Aube" <rene.aube@gnb.ca> wrote in message
news:2d3e9af6.0312230648.21b34279@posting.google.c om...> Hi everyone,
>
> I'm incharge of updating the stats on a chl hockey teams Web Site. I
> would like to know if there is a way to be able to save
> the content of the CHL Statistics WebPage on our Server and using it
> to update our Microsoft Access 2000 database.
>
> If it possible, then I would take the content of that page. Execute
> some code that will take this information an place it in our
> database on our server. By doing this, our Team WebSite would be
> update automaticaly at a time that I specify on our server.
>
> At this time, I have to open the CHL Statistics WebPage. Then Save the
> HTML page as a txt file, upload it on our server via FTP, then execute
> my my code that places it in our database.
>
> Could you send your suggestions to [email]rene.aube@gnb.ca[/email]?
>
> Any help would be greatly appreciated and Thank You in advance.
>
> Rene Aube
Mark Schupp Guest
-
Mark Schupp #4
Re: Getting HTML content from one Server and Saving it on another Server
make that "MSXML2.ServerXMLHTTP"
--
Mark Schupp
Head of Development
Integrity eLearning
[url]www.ielearning.com[/url]
"Mark Schupp" <mschupp@ielearning.com> wrote in message
news:OALSokWyDHA.560@TK2MSFTNGP11.phx.gbl...> Use MSXML2.ServerHTTP to send a request to the stats site and return the
> response as a string. Quickest way to get an example is to go to
> [url]www.aspfaq.com[/url] and search for "form post". Check the articles about
> simulating a form post on the server. I'd give you a specific article but
> the site is down at the moment. You can find similar examples at other ASP
> sites.
>
> --
> Mark Schupp
> Head of Development
> Integrity eLearning
> [url]www.ielearning.com[/url]
>
>
> "Rene Aube" <rene.aube@gnb.ca> wrote in message
> news:2d3e9af6.0312230648.21b34279@posting.google.c om...>> > Hi everyone,
> >
> > I'm incharge of updating the stats on a chl hockey teams Web Site. I
> > would like to know if there is a way to be able to save
> > the content of the CHL Statistics WebPage on our Server and using it
> > to update our Microsoft Access 2000 database.
> >
> > If it possible, then I would take the content of that page. Execute
> > some code that will take this information an place it in our
> > database on our server. By doing this, our Team WebSite would be
> > update automaticaly at a time that I specify on our server.
> >
> > At this time, I have to open the CHL Statistics WebPage. Then Save the
> > HTML page as a txt file, upload it on our server via FTP, then execute
> > my my code that places it in our database.
> >
> > Could you send your suggestions to [email]rene.aube@gnb.ca[/email]?
> >
> > Any help would be greatly appreciated and Thank You in advance.
> >
> > Rene Aube
>
Mark Schupp Guest



Reply With Quote

