How do you access elements in XML document?

Answers were Sorted based on User's Feedback



How do you access elements in XML document?..

Answer / technical_sathish

Creating Object for XML we can Access the Elements...
Microsoft Provider....

Is This Answer Correct ?    6 Yes 0 No

How do you access elements in XML document?..

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

How do you access elements in XML document?..

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

Post New Answer

More XML XSLT RSS Interview Questions

What are the basic rules to write xml document?

0 Answers  


What is an xml feed?

0 Answers  


What is an xsd used for?

0 Answers  


Explain how we compare xslt and xpath?

0 Answers  


Can we do sorting in XSL ? how do you deal sorting columns dynamically in XML.

0 Answers   ABC,






Explain about xml canonicalization?

0 Answers  


What is xml and its benefits?

0 Answers  


What is an xml template?

0 Answers  


How do I add an rss feed to my website?

0 Answers  


Why is xml used?

0 Answers  


What is the function of forward compatible processing?

0 Answers  


What is xsl describe its two parts?

0 Answers  


Categories