Bonjour,

j'ai un problème lorsque je veux décoder un champs XSL. mon code est comme suit :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
 
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:java="http://xml.apache.org/xalan/java" version="1.0" exclude-result-prefixes="java">
<xsl:template name="decode" xmlns:decode="xalan://java.net.URLDecoder">
 
 
...
 
<tr>
<th class="candidates_dataTitle"><%= commentLabel%></th>
     <td width="20%" colspan="4">
             &#xA0;<xsl:value-of select="URLDecoder:decode($comment)"/>
 
     </td>
</tr>
Je sais pas si c'est un problème de syntaxe. merci pour votre aide.