I am working on download profile picture from my sites into local drive. I don't understand how to approach that concept. Please some one give an idea or code steps. That will be helpful.
It's just a web site...
How about:
using (WebClient client = new WebClient())
{
client.DownloadFile(url, filePath);
}
Courtesy of StackOverflow