I have a HTMLDocument, and in it there are a number of TAGS with a value between them:

Code:
<COLUMN><NAME>Subject</NAME></COLUMN>
<COLUMN><NAME>Status</NAME></COLUMN>
<COLUMN><NAME>Description</NAME></COLUMN>
I am struggling to get the values Subject, Status, Description from the HTML. This is what I am trying to do right now...

Code:
For Each htmlEl In htmlData.GetElementsByTagName("Name")
   arrColumns(iCurCount).name = htmlEl.OuterHtml
Next
But this simply returns <NAME>.
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?