[
https://issues.apache.org/struts/browse/STR-2919?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_40260
]
Daniel Bittner commented on STR-2919:
-------------------------------------
I am experiencing a similar issue in Struts 1.1
I am using the same wrapping techique, but I have put the ccode from the
included jsp page directly into the body of the tiles:put tag.
> Display problem with html page in <jsp:include> and wrapped in a
> <tiles:insert>
> -------------------------------------------------------------------------------
>
> Key: STR-2919
> URL: https://issues.apache.org/struts/browse/STR-2919
> Project: Struts 1
> Issue Type: Bug
> Components: Tiles
> Affects Versions: 1.2.9
> Environment: Solaris 10, SuSE Enterpise Linux 10, Sun Java Web
> Server 6 .1 sp6
> Reporter: Sean Kavanagh
>
> main.jsp >>
> <%@ taglib uri="/WEB-INF/struts-tiles.tld" prefix="tiles" %>
> <html>
> <head></head>
> <body>
> <tiles:insert page="/tiles_base.jsp" flush="false">
> <tiles:put name="text" type="string">
> <jsp:include page="/jsp_include.html"/>
> </tiles:put>
> </tiles:insert>
> </body>
> </html>
> >>>>>>>>>>>>>>
> tiles_base.jsp >>
> <%@ taglib uri="/WEB-INF/struts-tiles.tld" prefix="tiles"%>
> This is the tiles base page<br>
> <tiles:insert attribute="text" ignore="false"/>
> >>>>>>>>>>>>>>
> jsp_include.html >>
> This is the jsp include page<br>
> >>>>>>>>>>>>>>
> This displays incorrectly as
> This is the jsp include page<br>
> <html>
> <head></head>
> <body>
> This is the tiles base page<br>
> </body>
> </html>
> When the jsp:include should be after the first message, and inside the <body>
> tag. If the page's extension is changed to jsp instead of html and included,
> it works fine.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.