Send text to web page

L

Luis

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
 
B

BeWyched

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
 
Top