I am trying to covert XML to HTML using XSLT. In this area I need to read repeated node values.
Consider this scenario
<root>
<test>
<ID> 123 <</ID>
<Name> MyName </Name>
<Country> India </Country>
<Books>
<language> C </language>
<language> C++ </language>
<language> Java </language>
<language> XML </language>
</Books>
</root>
In this example am able to read all the node values like
<xsl:value-of select="ID">
except “language” node.
I need output like C C++ Java XML .
Any idea????
1 Answer