I'm creating an application in jsp & servlet. So I have created a home.jsp page it is a main page of an application and it contains a menu bar . When user clicks on menu item the following page should appear in my iframe and if user clicks on another menu item the selected page should appear in the same iframe. I need a help.... The following code is creating a menu bar and menu item
<li><a href="#">Master</a>
<ul>
<li><a href="Customer.jsp">Customer</a></li>
<li><a href="Suplier.jsp">Suplier</a></li>
<li><a href="Item.jsp">Item</a></li>
</ul>
</li>
<li><a href="#">Transaction</a>
<ul>
<li><a href="Purchase.jsp">Purchase</a></li>
<li><a href="Sales.jsp">Sales</a></li>
</ul>
</li>
<li><a href="Contact.jsp">Contact</a></li>
After menu bar I have a iframe in which I want to show a menu item. I don't know how do i do this. please help me out