Internet Transfer Control and C#

  • Thread starter Thread starter Ben Cox
  • Start date Start date
B

Ben Cox

Trying to use the MS Internet Transfer Control in a Windows app. I get no
errors but when I try to transfer files it is not working. Does anyone have
any working samples.

Ben
 
Ben,

Instead of using the internet transfer control, you might want to look
at the classes derived from WebRequest and WebResponse. For HTTP requests,
you can use the HttpWebRequest class, and the HttpWebResponse class.

If you need FTP access, it isn't available now, but in .NET 2.0, there
is a FtpWebRequest/FtpWebResponse class.

Hope this helps.
 
Back
Top