Grab a file from another web server

Nevermind. As usual i figured it out write after i finished mosting the question

System.Net.WebClient w = new System.Net.WebClient();
w.DownloadFile(theirURL, myServerLocation);
 
Back
Top