Forum de discussion
Forum « Programmation XML et XSL » (archives)
Re: C vraiment urgeant
Envoyé: 10 mars 2004, 7h19 par ayweb
mon code xsl est simple, c juste une edition du contenu xml, le code et le suivant :
<table border="0" cellpading="0" cellspacing="0">
<tr>
<td>Nom</td>
<td>Reference client</td>
<td>Situation compte</td>
<td>Etats Litiges</td>
<td>Date abbonnement</td>
<td>date limite approvissionement</td>
</tr>
<xsl:for-each select="//compte">
<tr>
<td><xsl:value-of select="nom_clt"></td>
<td><xsl:value-of select="ref_clt"></td>
<td><xsl:value-of select="sit_cpt"></td>
<td><xsl:value-of select="etat_litig"></td>
<td><xsl:value-of select="date_ab"></td>
<td><xsl:value-of select="date_lim_app"></td>
</tr>
</xsl:for-each>
</table>
Beh vous voyez c vraiment tres simple
;-); merci de m'informer si'il y a de nouveau @+
Réponses
|