> Please be more specific about the problem you have. First, does it load
> correctly or it is reported as an invalid XML document ?
[quoted text clipped - 66 lines]
>
> - Show quoted text -
Ah ok. It's much easier to help when knowing what you try to do ;-)
Your best bet is IMO to take over and create the dataset structure by
yourself by reading this as an XmlDocument and by browsing the nodes.
AFAIKthis document won't ever be able to be processed by the dataset
structure inference rules because of its quite bad structure....
--
Patrice
On 14 Sep, 12:37, "Patrice" <http://www.chez.com/scribe/> wrote:
> Please be more specific about the problem you have. First, does it load
> correctly or it is reported as an invalid XML document ?
[quoted text clipped - 66 lines]
>
> - Show quoted text -
It does not come up with an error of a poorly formed document, but I
think because the tags within <clubgig> are all different, there is
something wrong.
I have a bit of code:
Dim strURL As String = "http://www.nme.com/clubnmerss"
Dim reader As XmlTextReader = New XmlTextReader(strURL)
Dim ds As New DataSet
ds.ReadXml(reader)
Me.GridView1.DataSource = ds
Me.GridView1.DataBind()
all that out puts is the first venue and address.
TheDude5B - 14 Sep 2007 13:45 GMT
> Ah ok. It's much easier to help when knowing what you try to do ;-)
>
[quoted text clipped - 97 lines]
>
> - Show quoted text -
Yeah that is what I was thinking. At least it is not just me then that
thinks the XML document has a bad structure!
I was thinking of using the XmlTextReader and then stepping through
this with the reader.Read() method.