Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

XML/DOM

Status
Not open for further replies.

sachinchaubey

Programmer
Nov 14, 2000
2
0
0
IN
Hello..where are all the E Xml perts..????
How can you retrieve data from an XML file using DOM which has structure as:
<try>
<A name=&quot;aaa&quot; address=&quot;lll&quot;/>
<A name=&quot;bbb&quot; address=&quot;ccc&quot;/>
<B name=&quot;aaa&quot;profession=&quot;sss&quot; income=&quot;1234&quot;/>
<B name=&quot;bbb&quot; profession=&quot;mmm&quot; income=&quot;9594&quot;/>
<C name=&quot;aaa&quot; phone=&quot;1987&quot;/>
<C name=&quot;bbb&quot; phone=&quot;1990&quot;/>
</try>

What I want is to extract each node according to the name in a table
for eg: deatils of aaa is
Address: lll
income: 1234
phone: 1987

and put a next button to browse through all the records and at the same time give the user an option to edit the data

All this without using server side scripting!!!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top