I was trying to replace Frameset and Frame jsp page with <div> and <object> tag. That is two set of <div><object> tags to include menu.jsp and content.jsp. Problem is F12 tools show me that the menu.jsp and content.jsp are being called twice, and this created Error:500 because some stack list in the jsp page is being called twice and it is all cleared out after first call. How can I prevented this? I am calling the jsp like follow:
<div id="topDiv"><object type="text/plain" data="menu.jsp" style="height:100%; width:100%;"></object></div>
<div id="bottomDiv"><object type="text/plain" data="content.jsp" style="height:100%; width:100%;"></object></div>