I have a HTMLDocument, and in it there are a number of TAGS with a value between them:
I am struggling to get the values Subject, Status, Description from the HTML. This is what I am trying to do right now...Code:<COLUMN><NAME>Subject</NAME></COLUMN> <COLUMN><NAME>Status</NAME></COLUMN> <COLUMN><NAME>Description</NAME></COLUMN>
But this simply returns <NAME>.Code:For Each htmlEl In htmlData.GetElementsByTagName("Name") arrColumns(iCurCount).name = htmlEl.OuterHtml Next
OuterText, InnerText,InnerHTML all return Nothing, and children = 0.
I'm guessing Element level is the wrong place to be, but I don't see any other way around it.
Anybody have any experience in extracting this data?




Reply With Quote