Textbox.text to a ftp

stefonalfaro

Member
Joined
Dec 3, 2007
Messages
16
Programming Experience
Beginner
This is probably really complex or impossible to do but anyway. I have a textbox4 and a textbox5 when the user clicks on button1 I want it to send the information from textbox4.text and the information from textbox5.text to my ftp site in any form (.txt or.html etc...)
 
Use My.Computer.FileSystem to write the text file. (choose WriteAllText or OpenTextFileWriter methods)
Use My.Computer.Network to upload file. (UploadFile method)
 
Back
Top