How to get table from wikipedia

jituvaiz

New Member
I want to put one table from wikipedia into xml file and then parse it to c#. Is it possible? If yes, can I save in xml only Title and Genre column?\[code\]HtmlWeb web = new HtmlWeb();HtmlDocument doc = web.Load("http://en.wikipedia.org/wiki/2012_in_film");HtmlNode node = doc.DocumentNode.SelectSingleNode("//table[@class='wikitable']");\[/code\]
 
Back
Top