03WYchadwick
New Member
I am developing a web application using JSP & Servlets.I am trying to find alternatives to HTML Frames. So I have search and I found that it can be done using CSS.So I have a \[code\]CSS\[/code\] which divides screen into three parts:[*]Header[*]Content[*]FooterHTML code\[code\]<body> <div id="content-wrapper"> <div id="content"> content here </div> </div> <div id="header-wrapper"> <div id="header"> Header here </div> </div> <div id="footer-wrapper"> <div id="footer"> Footer here </div> </div></body>\[/code\]So now I want to display different pages in each \[code\]div\[/code\] tag. My aim behind doing this was putting code of \[code\]menu's\[/code\] in single HTML file and then display that file in all other web pages as a \[code\]Header\[/code\]. So is there any way of doing this?[Note: This is one way I have found after searching so far, So let me know if there are any better options which can be alternatives to \[code\]Frames\[/code\]]