Hello,I would like to know if it possible to include a JSP Page using an attribut. By examplepublic String pathUp = "Up.jsp";jsp:include page = pathUp flush = "true"Thanks to all,Alain
[233 byte] By [GregoireAlain] at [2007-9-26 1:47:10]
Yeah apparently you can use expressions in the attribute like this:<jsp:include page="<%=pathUp%>" flush="true"/> Never tried it myself but it says you can in the JSP Reference Card.