Saving HTML Form Data to XML by ASP

Storing your form submissions in XML
Usually form submissions in ASP are written to some sort of database management system. However, if you need your form submission data to be more portable, it can be written to an XML file. This is especially useful when the data you are gathering on your Web site will be [...]

Parsing XML File in ASP

Hi If you need to parse a XML file in ASP Code you may use the following:
First we need a XML file named book.xml.

<?xml version=”1.0″ encoding=”utf-8″ ?>
- <configuration>

- <books>

- <book>

- <name>

- <![CDATA[ ASP and AJAX  ]]>
  </name>

- <description>

- <![CDATA[ This is a book for ASP and AJAX ]]>
  </description>

- <author>

- <![CDATA[ Author 1 ]]>
  [...]