I am anime fan and I want to get full list of all ANIME CHARACTERS, so I've come across this site: http://www.animevice.com/characters/?page=1 My goal is to extract all names and add them to listBox1. Here is my current code:
try
{
while (true)
{
HttpWebRequest req = (HttpWebRequest)HttpWebRequest.Create("http://www.animevice.com/characters/?page=" + n);
req.Method = "GET";
req.UserAgent = "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:15.0) Gecko/20100101 Firefox/15.0";
req.KeepAlive = true;
HttpWebResponse response = (HttpWebResponse)req.GetResponse();
Stream responseData = response.GetResponseStream();
StreamReader reader = new StreamReader(responseData);
string responseFromServer = reader.ReadToEnd();
string m = "<a href=\"(.*)\" class=\"name\">(.*)</a>";
Match match = Regex.Match(responseFromServer, m, RegexOptions.IgnoreCase);
if (match.Success)
{
listBox1.Items.Add(match.Groups[2]Value.ToString());
}
if (listBox1.Items.Count % 50 == 0)
{
n++;
}
}
}
catch { }
However this gives me only the first name on the list ( Monkey D. Luffy ) many times. Any solution? Cheers
WebBrowserclass that would give you more access to the DOM allowing you to query for the anchor objects a lot easier. – Brad Christie Nov 10 '12 at 23:26