I want to read a view source of any web page and want to download all images in a folder.
I use below code to read page source:
string address = "http://stackoverflow.com/"; //any web site url
using (WebClient wc = new WebClient())
{
txtRead .Text= wc.DownloadString(address);
}
But in this view source how to get only img src and download images in a local folder.
Thanks, Hitesh