All,
I have a vertical menu appearing on the left side. On clicking the link from the vertical menu, how can I make the page/text appear on the right side? Are there any alternative to using frames? Thanks
If you are using JSP or any other scripting language..
(1) Create a JSP file called menu.jsp which contains the code for the vertical menu
(2) Create a template file called main.jsp which looks like
Code:
<div id="l-menu">
<%@ include page="menu.jsp" %>
// links in menu.jsp - main.jsp?page_name=contact.jsp
// main.jsp?page_name=faq.jsp
//etc
</div>
<div id="l-main">
// read the page_name property and include the page here
</div>
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.