grid inside the div tag in jsp

my main.jsp includes two jsp files in the div tags. the two files included creates grids respectively, but when i run my jsp the grid in the div tags are not shown .

for example my main.jsp is



<%@ page language=“java” contentType=“text/html” %>

<%@ taglib prefix=“c” uri=“http://java.sun.com/jstl/core” %>









<jsp:include page=“header.jsp” flush=“true” />



















<jsp:include page=“Propertyinfo.jsp”/>












<jsp:include page=“Propertylog.jsp” />































included jsp files are propertyinfo.jsp and propertylog.jsp



propertyinfo.jsp is













    CustomerInformation

    

    

    

            

        















    

    

    
















and propertylog.jsp is













    CustomerInformation

    

    

    

            

        















    

    

    




















my main.jsp div tags are not displaying the output of the included pages. please help.

You are including the full pages with head and body sections.
As result result page will have a mess of tags, and only one of init codes will be launched ( because there are two body tags, with onload handlers )