How do you access elements in XML document?
Answers were Sorted based on User's Feedback
Answer / technical_sathish
Creating Object for XML we can Access the Elements...
Microsoft Provider....
| Is This Answer Correct ? | 6 Yes | 0 No |
Answer / aravazhi
This way u can access...
XmlDocument xmldoc = new XmlDocument();
xmldoc.Load(Server.MapPath("Employee.xml"));
XmlNodeList xmlnodes = xmldoc.SelectNodes
("Employee/EmpName");
DataGrid1.DataSource = xmlnodes;
DataGrid1.DataBind ();
| Is This Answer Correct ? | 4 Yes | 4 No |
Answer / kaushalbhardwaj
elements in an xml file can be accsssed by the use xpath
xpath is basicaly the path of the element starting from the
root(i.e. the top elemnt). eg /root/chield/chieldofchield/
| Is This Answer Correct ? | 2 Yes | 2 No |
What is xl s size?
What is the usage of xslt?
How do I subscribe to rss feeds in chrome?
What is xml simple definition?
Write a code for xml attribute and element.
What does xsd mean?
Can an application process documents that use xml namespaces and documents that don’t use xml namespaces?
Is there an xml version of html?
what is the significance of namespaces in xml?
How do I undeclare the default xml namespace?
Where is xml used?
Is xml format or content-driven?