I can't seem to get this to work:
<%@ includes file="<c:out value='${includePage}' />" %>
I didn't see anything in the Spec that suggests that it would violate spec, but it
wasn't mentioned either (as far as I saw.)
Since I need the contents of "includePage" to be processed as JSP, I think I am SOL
and will have to wrap it in a choose/when tag
<c:choose>
<c:when test="${includePage == 'somepage.jsp' >
<%@ includes file="somepage.jsp" %>
</c:when>
</c:choose>
Am I missing something? The reference is always local, but when I tried <c:import> It
wouldn't process the JSTL tags in somepage.jsp.
I appreciate any feedback
Rick