question on downloading from web site

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi All,
Can anyone point in the right direction on how I can connect to my own web site and download a file
? This so I can update the program or datafiles.
THANK YOU.
 
You can use the HttpWebRequest/HttpWebResponse classes, or the WebClient
class to perform downloads.

However, for the purpose of application updates, you should look at the
Updater application block in the enterprise application blocks at Microsoft.

If you are using .NET 2.0, you should look into ClickOnce as well,
because it would wrap up most of what you need.

Hope this helps.
 
Back
Top