here’s an example of what I am running to build a string
currentResult = node.SelectSingleNode(".//a[contains(@class,'pltpp test hyper')]").InnerText
currentResult = currentResult & "|" & node.SelectSingleNode(".//p[contains(@class,'list-number')]").InnerText
I can do an if/then/else but I’d have to do that for each request to avoid null exceptions
Any suggestions?
Thanks