The following is the existing code ... working fine...
<FRAMESET rows="10%,*" framespacing="0" border="false" frameborder="0" frameborder="no">
<frame src="<%= request.getContextPath() %>/jsp/Header.jsp" name="Header" scrolling="NO" noresize>
<frameset cols="17%,*" framespacing="0" border="false" frameborder="0" frameborder="no">
<FRAME SRC="<%= request.getContextPath() %>/jsp/LeftNav.jsp" NAME="LeftNav" MARGINWIDTH=0 MARGINHEIGHT=0 SCROLLING=no NORESIZE>
<FRAMESET rows="9%,8%,*" framespacing="0" border="false" frameborder="0" frameborder="no">
<FRAME SRC="<%= request.getContextPath() %>/jsp/MainNav.jsp" NAME="Main" MARGINWIDTH=0 MARGINHEIGHT=0 SCROLLING=no>
<FRAME SRC="<%= request.getContextPath() %>/jsp/SubNav.jsp" NAME="SubNav" SCROLLING=no>
<FRAME SRC="<%= request.getContextPath() %>/jsp/BodyNav.jsp" NAME="BodyNav" NORESIZE>
</FRAMESET>
</FRAMESET>
</FRAMESET>
here i moved... the
jsp page to /WEB-INF/jsp/sys/ folder.
now i changed the code
<frame src="<%= request.getContextPath() %>/jsp/Header.jsp" name="Header" scrolling="NO" noresize> to
<frame src="<%= request.getContextPath() %>/WEB-INF/jsp/sys/Header.jsp" name="Header" scrolling="NO" noresize> ... for all jsps.
It is not working... the pages are not loading.
Please... somebody help me.
Thanks