K
Kenneth P. Graci
This code: (vb.net)
Dim xmlDoc As New XmlDocument
xmlDoc.LoadXml(strXML)
on this xml:
<?xml version="1.0" ?><tag>a,b</tag>
produces this error:
"This is an unexpected token. The expected token is 'EndElement'. Line
1, position 28."
without the comma between a and b it works.
why?
Dim xmlDoc As New XmlDocument
xmlDoc.LoadXml(strXML)
on this xml:
<?xml version="1.0" ?><tag>a,b</tag>
produces this error:
"This is an unexpected token. The expected token is 'EndElement'. Line
1, position 28."
without the comma between a and b it works.
why?