Use of Viewing in XML

In this article I am going to tell about XML Viewing.
  • 1978

Definition

XML Viewing means to view XML document. You can view XML file in your browser the same way you open any other file in browser. If it is a local file you can open it from file menu or if it's available over internet, you can type the URL into address bar.

Supporting Browsers

Internet Explorer, Mozilla Firefox, Google Chrome, Safari and Opera are the supporting browsers.

Example
 

<?xml version= "1.0"?>
    <inventory>
        <bikes>
           <model>Mountain Bike
              <price>$220.00 </price>
          </model>
          <model>Cruiser Bike
              <price>$180.00 </price>
         </model>
     </bikes>
</inventory>


Output

viewingXml.JPG

Further Readings

You may also want to read these related articles

Ask Your Question 

Got a programming related question? You may want to post your question here

Programming Answers here

© 2020 DotNetHeaven. All rights reserved.