
February 20th, 2002, 10:38 AM
|
|
Contributing User
|
|
Join Date: Feb 2001
Posts: 68
Time spent in forums: < 1 sec
Reputation Power: 13
|
|
|
i am having the same sort of issue except im calling a tag...
if you are just trying to get a path to a page from your servlet(which i am assuming because you are putting it in an include)
i would store the path you are retrieving in your servlet and put it in a session... then, at the top of your JSP page, declare a String..
<%String path1 = (String)session.getAttribute(new Integer(1).toString()); %>
where 1 was MY name for the session...
then...
<jsp:include page="<%=path1%>" flush="true" />
|