I figured out that the problem is in the "<link-code-html>...</link-co
I removed the "link-code-html" innertext in the example above - that must be why it worked for you, the offending data was removed.
I'm having to parse the document with looping and building a table programmatically (which is working so far) reading the stream into an XMLDocument.
Dim dx As New XmlDocument
dx.Load(xmldatastream)
Dim nl As XmlNodeList = dx.GetElementsByTagName("l
For Each n As XmlNode In nl
Dim advertiser_id As String = n.Item("advertiser-id").In
...
...
Next
Main Topics
Browse All Topics





by: nmarunPosted on 2009-09-09 at 22:35:32ID: 25297590
Hey, the code below worked for me. I copied the xml to a file and read it into the dataset.
Arun
Select allOpen in new window