S Sharon Aug 16, 2004 #1 Can anybody teach me how to write a code using asp net, so that i can downlaod file from server to local computer? Best regards
Can anybody teach me how to write a code using asp net, so that i can downlaod file from server to local computer? Best regards
J Joyjit Mukherjee Aug 16, 2004 #2 Hi, you can use the DownloadFile method of the WebClient class under the System.Net namespace. The method requires you to set the URL & filename properties to be set before you start downloading the requested file. Regards Joyjit
Hi, you can use the DownloadFile method of the WebClient class under the System.Net namespace. The method requires you to set the URL & filename properties to be set before you start downloading the requested file. Regards Joyjit
G Guest Aug 16, 2004 #3 http://support.microsoft.com/default.aspx?scid=kb;en-us;812406 Is a pretty good article.