The XML data file contains two contact entries, each with a name and phone number.
XML Data File (contacts.xml)
<?xml version="1.0"?>
<contacts>
<contact>
<name>John Doe</name>
<phone>123-456-7890</phone>
</contact>
<contact>
<name>Jane Doe</name>
<phone>123-456-7891</phone>
</contact>
</contacts>
To add contacts.xml to the project
Next, we'll create an ASP page to handle the request.