In the last persons example, just change the line to read:
string test2 = row.SelectSingleNode(".//td").InnerText;
The . means to do the search from the current node, // on its own means from the start of the document
In the last persons example, just change the line to read:
string test2 = row.SelectSingleNode(".//td").InnerText;
The . means to do the search from the current node, // on its own means from the start of the document