Is there a way, using C#.Net, to basically use something like http://www.bing.com/images/search?q=microsoft&form=QBIL&qs=n&sk=&sc=8-4, extract all the images from it, and put it into a file?
feedback
|
|
You can use the HTML Agility Pack and its | |||
|
feedback
|
|
If you would like to do it a bit cleaner then go for bing API its the best way to do it. In its JSON/XML/SOAP response you will get url to each Image in the result, You can retrive those images in a Loop or more better in a LINQ query. Check out this PDF which tell you the basic for get going. Here is an example of how you can do it. First get an APPID that allow you to make API Queries then. make a request like this
then create a class that will keep the returned data.
and then retrive the data from response using a LINQ query.
| |||
|
feedback
|