Salut à tous,
j'ai le code suivant:
mais j'ai une page blanche qui s'affiche, ça ne marche pas. Pourquoi?
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9 <c:forEach var="par" items="${pars}" varStatus="status"> <c:when test="${status.index % 2 == 0}"> drawChart("<c:out value="${par.m}${par.s}" />"); </c:when> <c:otherwise> drawChart2("<c:out value="${par.m}${par.s}" />"); </c:otherwise> </c:forEach>
Partager