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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top