Want to send file from my VB application to my website.
This is new to me. I need to know how to send a file from my application to my website if my computer happens to be connected to the internet. It's an FTP site. I used Visual Web Developer 2008 to build my site. I obviously have to do some digging of my own but maybe someone can tell me a few things to point me in the right direction. What commands would I be using in Visual Basic?
Re: Want to send file from my VB application to my website.
Are you saying that you have a WinForms app with which you want to upload a file to an FTP server? If so then the easiest ways are using My.Compter.Network.UploadFile, WebClient.UploadFile or an FtpWebRequest, in that order.
Note, the fact that the file might be used on a web site is irrelevant to the app uploading the file.