I am having a couple of issues with my code, I am trying to pull every paragraph from a page, but at the moment it is only selecting the last paragraph.
here is my code.
IMO, XPath is no fun. I'd recommend using LINQ syntax instead:
foreach (var node in doc.DocumentNode .DescendantNodes() .Single(x => x.Id == "body") .DescendantNodes() .Where(x => x.Name == "p")) { string text = node.InnerText; lblTest2.Text = text; }