A Sample Xml File source code for various asp.net Xml example
ITBookStore.xml
<?xml version="1.0" encoding="utf-8" ?>
<!-- This is a sample XML file for various XML example-->
<books>
<book ID="1">
<name>Adobe Flex 3: Training from the Source</name>
<author>Jeff Tapper</author>
<price>47.99</price>
<type>Flex</type>
<image>AdobeFlex3.jpeg</image>
</book>
<book ID="2">
<name>Styling Web Pages with CSS</name>
<author>Tom Negrino</author>
<price>15.99</price>
<type>CSS</type>
<image>CSS.jpeg</image>
</book>
<book ID="3">
<name>Adobe Flash CS4 Professional</name>
<author>Mark Schaeffer</author>
<price>19.99</price>
<type>Flash</type>
<image>FlashCS4.jpeg</image>
</book>
</books>

- XmlReader: How to read and process Xml file element name in asp.net
- XmlReader: How to read and process Xml file element data in asp.net
- XmlReader ReadState: How to get present read state of XmlReader in asp.net Xml
- XmlReader HasAttributes and GetAttribute: How to read attribute in asp.net Xml
- XmlReaderSettings: How to use XmlReaderSettings with XmlReader in asp.net Xml
- WriteAttributeString: How to write attribute in xml file in asp.net
- WriteComment: How to write comment in xml file in asp.net