voila mon fichier XSL. Qd je compile il dit qu'une erreur de namespaces est detecte. Mais je ne vois pas laquelle... peut etre quelqu'un aurait une idee...
<?xml version="1.0" encoding="ISO-8859-1" ?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transfrom">
<xsl:template match="/">
<xsl:apply-templates />
</xsl:template>
<xsl:template match="text()|@*">
<xsl:value-of select="."/>
</xsl:template>
<xsl:template match="suivi_conso">
<table border="1">
<tr>
<th colspan="4">Référence abonné</th>
</tr>
<tr>
<th>Nom</th>
<th>Prenom</th>
<th>Telephone</th>
<th>Forfait</th>
</tr>
<tr>
<td>
<xsl:value-of select="./Nom"/>
</td>
<td>
<xsl:value-of select="./Prenom"/>
</td>
<td>
<xsl:value-of select="./Telephone"/>
</td>
<td>
<xsl:value-of select="./Forfait"/>
</td>
</tr>
</table>
<table border="1">
<tr>
<th colspan="3">Suivi conso</th>
</tr>
<tr>
<th>Temps_restant</th>
<th>Hors_forfaitF?</th>
<th>Hors_forfaitE?</th>
</tr>
<tr>
<td>
<xsl:value-of select="./Temps_restant"/>
</td>
<td>
<xsl:value-of select="./Hors_forfaitF"/>
</td>
<td>
<xsl:value-of select="./Hors_forfaitE"/>
</td>
</tr>
</table>
</xsl:template>
</xsl:stylesheet>
---------------
PDG du Microsoft's DestructorClan.