El código siguiente provoca un error:puedo pasar una variable de un scriptlet JSP JSTL pero no de JSTL a un scriptlet JSP sin un error
1. <c:set var="test" value="test1"/>
2. <%
3. String resp = "abc";
4. resp = resp + test;
5. pageContext.setAttribute("resp", resp);
6. %>
7. <c:out value="${resp}"/>
dice El error
"error a line 4: unknown symbol 'test'".
Cómo ¿Paso el test
del código JSTL al scriptlet JSP?
JSTL me hace llorar, o al menos encogerse cuando tengo que leer mucho de las cosas fugly. ¡Gracias, sin embargo! – Roboprog