Hi,
I am using DOM to read from XML file. A sample of my XML is
<doc>
<content> This is content. It may have <tags> like this </content>
</doc>
Now when I do getElementsByTa gName(doc), I get an error telling me that the xml is not well formed, which is true since the <content> element has an ill-fromed <tags> in it.
How do I parse xml documents like this?
Thanks .
I am using DOM to read from XML file. A sample of my XML is
<doc>
<content> This is content. It may have <tags> like this </content>
</doc>
Now when I do getElementsByTa gName(doc), I get an error telling me that the xml is not well formed, which is true since the <content> element has an ill-fromed <tags> in it.
How do I parse xml documents like this?
Thanks .
Comment