hi, i am getting an error when i am accessing the R node in an xml file, below is the typical data found in the R node. the line that seems to be causing the problem is this one Response.Write(Node.selectSingleNode("R"
.text)
'--- one of the R nodes in the xml file
<R>
- <![CDATA[ ]]>
</R>
''' a snippet of my code
Set objRoot = objDom.documentElement
For iCount= 1 to CInt(resultLength)
set Node = objRoot.selectSingleNode("RESULTS/SITE[@I=" & CInt(iCount)& "]"
Response.Write(Node.selectSingleNode("R"
.value)
Next
anyone got any ideas?
thanks
Mic.
'--- one of the R nodes in the xml file
<R>
- <![CDATA[ ]]>
</R>
''' a snippet of my code
Set objRoot = objDom.documentElement
For iCount= 1 to CInt(resultLength)
set Node = objRoot.selectSingleNode("RESULTS/SITE[@I=" & CInt(iCount)& "]"
Response.Write(Node.selectSingleNode("R"
Next
anyone got any ideas?
thanks
Mic.