You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by Jonathan Gordon <jg...@viant.com> on 2000/03/16 10:01:08 UTC

Re: automatic reload of included jsp-pages

"Amrhein, Thomas" wrote:
> I include jsp-files in "myfile.jsp" this way:
> 
> <%@ include file="otherfile.jsp" %>
> 
> "myfile.jsp" is automatically reloaded if changed
> but not "otherfile.jsp"!!!

what happens if you try something like the following:
<% String pageName = "otherfile.jsp"; %>

<jsp:include page="<%=pageName%>" flush="true"/>