Hello,
I am trying to read an xml document with linq for databinding purposes.. The format is a bit tricky giving me problems I suspect. I can't alter the format, it comes from 3rd party video feed suppliers.
The format is:
<videos>
<video>
<title></title>
<description></description>
<etc..>
<clips>
<clip>
<flv>filename.flv</flv>
</clip>
</clips
</video>
<video>... </video>
</videos>
My code so far is this
Dim xDoc As XDocument = XDocument.Load(Server.MapPath("~/FreeVideos/videoFeed.xml"))
Dim xdata = From feed In xDoc.Root.Desce ...
Go to the complete details ...