XML and ASP
I'm new to this XML and i'm totally lost..I tried searching in google but the results were not very helpful..Here is what i have
I have the following xml. And user data is passed as shown.
<?xml version="1.0"?>
<form_job>
<form_section>
<form name="User_Bio" action="2"></form>
<field name="TXT_NAME">KEVIN ZEGERS</field>
<field name="TXT_BIRTH">10/03/2006</field>
<field name="TXT_LOCATION">USA</field>
</form_section>
</form_job>
What i want to do is create a table and store the values passed from the xml.
i need is to create a table (in a database maybe access) called "User_Bio" (the form name).
And then create the fields "TXT_NAME, TXT_BIRTH, TXT_LOCATION" and also insert their values.
I know to use ASP and collect information from a web page and then insert them in a table that is already created...But i don't understand how to call the xml and then create the table and its fields..
Can someone give me some help
Thank you!

