I want to get the href-link from this:
<a class="abc" href="/subsite/2014/05/19/site.html"> <p>test1</p><p>test2</p> </a>
I'm trying this:
var nodes = doc.DocumentNode.SelectNodes("//a[@class='abc']/@href");
...InnerHtml becomes <p>test1</p><p>test2</p>
, not the link in the href...