Need to parse xml into multiple datatables

ImmuptVap

New Member
We have the following xml document that needs to be parsed into datatebles for use in a web page.Would tables for vehicle, customer, contact and vendor.Direction or code sample for this challenge would be greatly appreciated\[code\] <?ADF version="1.0.1"?> <adf> <prospect status="new"> <vehicle interest="buy" status="new"> <year>2013</year> <make>Chevrolet</make> <model>Corvette</model> <vin>CH499994995959593</vin> <trim>ZR1</trim> </vehicle> <customer> <contact> <name part="first">Rick</name> <name part="last">Smith</name> <email>[email protected]</email> <phone type="home">2299998989</phone> <phone type="work">2298887878</phone> <phone type="cell">2297778878</phone> <address type="home"> <street line="1">4001 Coleman Rd</street> <street line="2">Ste. 99</street> <city>Tempe</city> <regioncode>AZ</regioncode> <postalcode>43444</postalcode> </address> </contact> <comments>Customer comments</comments> </customer> <vendor> <contact> <name part="full" type="salesperson">Joe Smith</name> </contact> </vendor> </prospect> </adf>\[/code\]
 
Back
Top