CrimsonGT Posted May 18, 2011 Share Posted May 18, 2011 Are there any examples of using the HttpFileDownload class or does anyone know of any scripts floating around here that use it? Link to comment Share on other sites More sharing options...
Nisd Posted May 18, 2011 Share Posted May 18, 2011 Not sure what this class does but i guess it download files? If so, why not just use the normal WebClient? Link to comment Share on other sites More sharing options...
CrimsonGT Posted May 18, 2011 Author Share Posted May 18, 2011 Do you have any examples of that? I know a decent amount of C# .NET but this aspx stuff is somewhat confusing. Link to comment Share on other sites More sharing options...
Nisd Posted May 23, 2011 Share Posted May 23, 2011 Well if you just need to download a file, then you can do it like this: using System.Net; WebClient webClient = new WebClient(); webClient.DownloadFile("http://mysite.com/myfile.txt", @"c:\myfile.txt"); Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.