Qual è la sintassi XPath corretta per acquisire il valore dell'attributo href dal seguente HTMLNode :
<a target="_blank" class="monkeys" href="http://someurl.com" id="123">
<span class="title">Monkeys are flying all over!</span>
</a>
//a@href
cosa stai cercando?
Utilizzando HTMLAgilityPack, il metodo che utilizzi è:
HTMLAgilityPack.HTMLNode.GetAttributeValue("href", "")