amir mohamadi

amir mohamadi

  • NA
  • 15
  • 2.5k

How Should I Use HTMLAgilityPack In MVC 5.2

Nov 2 2015 11:16 AM
Hello
 
How Should I Use HTML Agility Pack in Asp.net mvc5.2 ?
 
this is my all of code :
HtmlWeb web = new HtmlWeb();
HtmlDocument document = web.Load("http://www.varzesh3.com/livescore");
HtmlNode node = document.DocumentNode.SelectNodes("//div[@id='anc']").First();
 foreach (HtmlNode item in nodes)
{
Console.WriteLine(item.InnerHtml);
}

Answers (6)