Retrive xml node value
Hi,
i got a problem in acessing data from xml file.
i need to get value of a node value by passing value of some other node value
its like retriving data from a corresponding table cell by help of value of other table cell value
the code of xml is like:
<table>
<tableHeader>
<tableHeaderCell name=" Stud Size"/>
<tableHeaderCell name=" Hardware"/>
<tableHeaderCell name=" Part Number"/>
</tableHeader>
<tableRow>
<tableCell>10-32</tableCell>
<tableCell>BACS12GU3K()</tableCell>
</tableRow>
<tableRow>
<tableCell>10-32</tableCell>
<tableCell>BACS12HN3-()</tableCell>
</tableRow>
</table>
<table>
<tableHeader>
<tableHeaderCell name=" Stud Size"/>
<tableHeaderCell name=" Structure Material"/>
<tableHeaderCell name=" Torque
(inch-pound) Minimum"/>
<tableHeaderCell name=" Torque
(inch-pound) Maximum"/>
</tableHeader>
<tableRow>
<tableCell>10-32</tableCell>
<tableCell>Aluminum</tableCell>
<tableCell>28</tableCell>
<tableCell>35</tableCell>
</tableRow>
I will have to pass value of tablecell(2) of first table and retrive tablecell(3) and(4)
of second table.
can anyone suggest a solution
thanx in advance
cln

