strange behaviour in jsp display
Hi all,
little prolem with jsp tanslation into html
I can't understand why I can't display anything without the c:out tag!!!!!
<c:forEach items="${CODICE_ISO}" var="codice">
<option>${codice}</option>
</c:forEach></select>
i see ${codice}!!!
<c:forEach items="${CODICE_ISO}" var="codice">
<option ><c:out value="${codice}"/></option>
</c:forEach></select>
i see the values of codice...
thnak you very much