I am trying to extract a table from a webpage using Html Agility Pack. So far I have managed to do a little of progress with it. This is my code so far
Dim web As New HtmlAgilityPack.HtmlWeb()
Dim htmlDoc As HtmlAgilityPack.HtmlDocument = web.Load("--Website url--")
Dim html As String = htmlDoc.DocumentNode.OuterHtml
Dim tabletag = htmlDoc.DocumentNode.SelectNodes("//table")
Basically I need to find a table with the following html tag
<table width="100%" border="0" cellspacing="0" cellpadding="3" summary="Contains search results">
Any Idea how I can strip down my search for tables to that specific table ?