I have an HTML stored on the variable called textResponse
coming from the other website and I also have a simple ASP-XML DOM code that check and output the table through className.
Here is the HTML structure
<html>
<head></head>
<body>
<table id="mytable" class="results">
<tr>
<td>Some Data</td>
</tr>
</table>
</body>
</html>
and here is the ASP and XMLDOM code that check and output the TABLE
through class attribute
Dim HTMLDoc, XML
Dim URL, table
Set HTMLDoc = CreateObject("HTMLFile")
Set XML = CreateObject("MSXML2.ServerXMLHTTP")
URL = "www.sample.com"
With XML
.Open "GET", URL, False
.Send
HTMLDoc.Write .responseText
HTMLDoc.Close
End With
For Each table In HTMLDoc.getElementsByTagName("TABLE")
If table.className = "results" Then
tablestr = table.outerHTML
End If
Next
the code works perfectly fine but this time, i want to output the table using TABLE by ID attribute. Is there any other way to check and output the TABLE through ID attribute?