Kees Jongenburger wrote:

> Hi,
> 
> can please someone tell me how to dynamically
> include file withing a custom tag.
> 
> none of the methods seam to work
> <% String testpage = "test.jsp"; %> gives:
> <jsp:include page="<%= testpage %>"/>
> 
> jsp:include needs to have "flush=true"
> 
> <% String testpage = "test.jsp"; %>
> <jsp:include page="<%= testpage %>" flush="true"/>
> Illegal to flush within a custom tag
> 

> any clues?
> 
> 
> 


 

<% String testpage = "test.jsp"; %>
<jsp:include page="<%=testpage%>" flush="true"/>

im i tried running that code and it works fine on mine..

im using tomcat 3.2.2 


what container are you using?

-- 
Francis Dione V. Callo             __
http://www.thefrancis.net       __|__|__
http://www.fracafican.com        (   )
[EMAIL PROTECTED]          ( . . )
                                 ( ~ )
                                   U

Reply via email to