JSP includes and Browser compatibility issue
Hi All,
I have created a Jsp application. Almost all jsp's have the following structure:
<%@ include file="init.jsp" %>
<table>
<tr><td><%@ include file="head.jsp" %></td></tr>
// some code
<tr>
<td><%@ include file="navigation.jsp" %></td>
<td><%@ include file="body1.jsp" %></td>
</tr>
<tr><td><%@ include file="footer.jsp" %></td></tr>
<%@ include file="end.jsp" %>
The application works fine in IE6. But the layout is disturbed in firefox and opera.
How can I make my application browser neutral.
Thanks.

