How to retrieve tags inside certain tag for XML using GetElementsByTagName/SelectNode/SelectSingleNode? – Asp.net
Let say I have a XML with this format: <TEST> <DRINK> <NAME>Ice tea</NAME> <NAME>Milo</NAME> <NAME>Coffee</NAME> </DRINK> <FOOD> <NAME>Fried Rice</NAME> <NAME>Hamburger</NAME> <NAME>Fried Noodles</NAME> </FOOD> </TEST> How to retrieve only food names and put them in the ASP.NET web form textbox? This…