XML and ASP

admin

Administrator
Staff member
Hello

I have a XML file like this


<?xml version="1.0"?>
<form_job>
<form_section>
<form name="E50018" action="2"></form>
<field name="MOD_LUOG">LONDON</field>
<field name="MOD_DATA">10/03/2006</field>
<field name="CCNOKA">LANGDON WILLIAM EDWARD</field>
</form_section>
</form_job>





What i need is to create a table (in a database maybe access) called "E50018" (the form name).
And then create the fields "MOD_LUOG, MOD_DATA, CCNOKA" and also insert their values.

Using ASP i know how to ask users some information and insert them in to a table..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.
 
Back
Top