Hi all,
Lets say that I have something like:
<%
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+ "/Templates/";
%>
and then I want to use this variable in a jstl like this:
<c:import url="<c:out value="${basePath}"/>heading.jsp"/>
why do I get a this response:
[
b]Error 500: 404 /%basePath%heading.jsp
I'm using websphere 6.0 to test, is this a websphere problem or it's just not possible for jstl to use jsp variables.
Is there any other way to import jsp variables into jstl?
thanks in advance.......
mike