Shree Patil

Shree Patil

  • NA
  • 12
  • 4.9k

How to download image in server to my pc??

Apr 5 2017 1:07 AM
Hello,
 I am try to implement downlaod image in server to web app but show the below error.How to resolved this error.....
 
"An exception occurred during a WebClient request."
 
 
This is my code:-
 
using (WebClient webClient = new WebClient())
{
System.Uri uri = new System.Uri(Convert.ToString(Dt.Rows[0]["Image"]));
string specialfolder = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments);
webClient.DownloadFile(Convert.ToString(uri), specialfolder);
//webClient.DownloadFile(Convert.ToString(Dt.Rows[0]["Image"]), @"C:\Users\PRIYANKA\Downloads");
}
 
Help me
thanks in advance..... 
 

Answers (1)