Posted by Pradeep on 01/07/08 03:45
I have a following XML file
<ITEMLIST>
<ITEM>
<NAME> Item1 </ITEM>
<PRICE> 500 </PRICE>
</ITEM>
<ITEM>
<NAME> Item2 </ITEM>
<PRICE> 600 </PRICE>
<LOCATION> XYZ</LOCATION>
</ITEM>
<ITEM>
<NAME> Item3 </ITEM>
<PRICE> 700 </PRICE>
<QTY> 25 </QTY>
</ITEM>
<ITEM>
<NAME> Item4 </ITEM>
<PRICE> 900 </PRICE>
<QTY> 90 </QTY>
</ITEM>
</ITEMLIST>
and want to display in HTML like following
-------------------------------------------
| | PRICE | LOCATION | QTY |
-------------------------------------------
Item1 | 500 | | |
-------------------------------------------
Item1 | 600 | XYZ | |
-------------------------------------------
Item1 | 700 | | 25 |
-------------------------------------------
Item1 | 900 | | 90 |
-------------------------------------------
Is it possible via XSLT to do this ...If yes, kindly provide a small
code snippet to do this
[Back to original message]
|