this is the xml:

Code:
<TEST description="just a test">output</TEST>
with

Code:
Dim _address As XmlNodeList = _doc.GetElementsByTagName("TEST")
_address(0).InnerText
the result will be 'output' .. how can i get the string 'just a test' from description?

thanks in advanced