JSP page is not getting rendered properly
[nobr]Hi All,
I have a JSP which is having a structure like the one below. I am using WebSphere Application Server 6. When the below JSP rendered to the screen it is showing only the contents of my dynamic include and code after the last dynamic include. I have tried to change the buffer size still the same problem persists.
<%@ page buffer="256kb" autoFlush="true" %>
<html>
<head>
<title>AA</title>
</head>
<body>
My Page Start.
<br />
<jsp:include page="include/header.jsp">
</jsp:include>
My page content.
<br />
<jsp:include page="include/nav.jsp">
</jsp:include>
Thefinal data.
</body>
</html>
What could be the problem? Please help me.
The output of the above JSP is
Contents of header.jsp
Contents of nav.jsp
The final data[/nobr]

