Link to home
Start Free TrialLog in
Avatar of kbenedict
kbenedict

asked on

Inet transfer control

i'm using the execute method with the Microsoft internet transfer control. i'm trying to use the POST parameter and send data to my webserver. it doesn't seem to attach any of the data that i send. What is the proper method to send a string of data using the post method with the INET Transfer control. by the way, the Microsoft help example doesn't work.
Avatar of kbenedict
kbenedict

ASKER

Edited text of question
ASKER CERTIFIED SOLUTION
Avatar of seahpc
seahpc

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
If you cant get PUT to work try this... I know it works:
Inet1.URL = "ftp://ftp.your.net"
Inet1.UserName = "yourname"
Inet1.Password = "password"
Inet1.Execute , "SEND C:\FTPtest.txt /www/yourdir/FTPtest.txt"