Hi guys
I'm new to XSLT programming and the question I ask may appear very easy to you guys. Please help me out.
This is the XML code :
<book id="12345">
<title>A<caps>New Voyage</caps>:Africa</title>
<desc>abcdefgh ijklmnop</desc>
</book>
<book id="12346">
<title>A<caps>New Voyage</caps></title>
<see id="12345">ANV</see>
</book>
I have to display the title and the description of each <book>. Some books don't have desc but have references to other tags. The attribute 'id' of the <see> tag refers to the book's id i have to refer and retrieve the <desc> value of that book and display it.
Please help me out. Is this possible using XSLT. The XML file cannot be changed.
Thanks in advance.