Wednesday, December 15, 2010

ASP.NET C# Upload from URL

using System.Net;
WebClient wc = new WebClient();

wc.DownloadFile("http://sourcefile.ext", "drive:\\path\\targetfile.ext");



References:
[1] http://www.csharpfriends.com/Articles/getArticle.aspx?articleID=115

No comments:

Javascript DEBUG functions

    Object . entries ( obj ) const obj = { foo : "bar" , baz : 42 } ; console . log ( Object . entries ( obj ) ) ; // [ [...