Salut les gens , j'ai un fichier xml source, et je veux faire un petit tableau pour récuperer quelques informations de mon fichier, voici un petit extrait de mon fichier:
et voici mon fichier xslt:
avec mon xslt, j'ai mon tableau mais il est vide, je ne comprend pas pourqoui !!!
aidez moi please
Modifié par aadari (17 Oct 2007 - 16:23)
...
<inst ......../>
..
<Part id="01" name="lolo lala" ..../>
....
et voici mon fichier xslt:
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method='html' encoding='ISO-8859-1' indent='yes'/>
<xsl:template match="/">
<html>
<body>
<h2>Liste ids noms</h2>
<table border="1">
<tr bgcolor="#9acd32">
<th>id</th>
<th>noms</th>
</tr>
<xsl:for-each select="//Part">
<tr>
<td><xsl:copy-of select="id"/></td>
<td><xsl:copy-of select="nom"/></td>
</tr>
</xsl:for-each>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
avec mon xslt, j'ai mon tableau mais il est vide, je ne comprend pas pourqoui !!!
aidez moi please
Modifié par aadari (17 Oct 2007 - 16:23)