Send text to web page

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello.
I'm trying to create a vba script that reads the content of a file and sends
it to a ASP Web page, using POST method.

Can anyone help me on this?

Thanks
 
There are several ways of doing this.

One method I've used is to use the:
'OpenTextFile' method to extract the text, then the:
'Follow' method to POST to the asp page.

Search in Help for the methods.

Note that I have found the POST option to be problamatic (and by other
judging by other posts to this forum). The GET option has always worked but,
of course, you are limited with the amount a text (a bit over 1,000
characters including the header).

Hope this helps.

Cheers.

BW
 
Back
Top