Thanks Dean. Works great!!! rick
--- In [email protected], Dean Fiala <[EMAIL PROTECTED]> wrote: > Yes, load it into the document object. > > Dim xmlDoc as XmlDocument = new XmlDocument > xmlDoc.LoadXml(yourstring) > > Walk the nodes. > > DIm nMain as XmlNode > nMain = xmlDoc.selectSingleNode("main") > Dim nChild as XmlNode > Dim NodeValue as string > For each nChild in nMain.ChildNodes > 'do something > NodeValue = nChild.InnerText > Next > > Note, this is .NET 1.1 syntax, but it is probably pretty close in 2.0 ------------------------ Yahoo! Groups Sponsor --------------------~--> Most low income households are not online. Help bridge the digital divide today! http://us.click.yahoo.com/cd_AJB/QnQLAA/TtwFAA/saFolB/TM --------------------------------------------------------------------~-> Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/AspNetAnyQuestionIsOk/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
