Could u please help me?
krishna
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
desperadogopalPosted Aug 22, 2005, 12:46 AM
I have found solution through XmlNodeReader. it's quite simple.
Thank u.
david89 0Posted Aug 20, 2005, 4:17 AM
(pseudocode)
for o = numberofchildren
XmlNode child = parent.ChildNodes.Item(i);
next o
and to obtain the value of that node you'd have to, weirdly, then get the FirstChild property of each child and echo that value. Yesterday when using Xml I found that just echonig child.Value wasn't enough!