I have read in the information but I cant seem to figure out how to get the information I want ie the name, type etc into a table. here what I did to get the data. ( I used a try-catch)
string url = ("http://www.oiseaux-birds.com/card-laughing-dove.html");
WebResponse response = null;
StreamReader reader = null;
try
{
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url);
request.Method = "GET";
response = request.GetResponse();
reader = new StreamReader(response.GetResponseStream(), Encoding.UTF8);
result = reader.ReadToEnd();
}
finally
{
if (reader != null)
reader.Close();
if (response != null)
response.Close();
Console.WriteLine(result);
}