creating partition

Friend I am looking for a screen which is divided into two parts ( which looks something like below)

These kind of screen is common in shopping and banking application.

EMPLOYEE DETAIL |employee name__

--

COMPANY DETAIL|employee age

--

PROVINCE DETAIL|employee address

-

CITY DETAIL |

OTHERS|

Where the first part is a menu where clicking on a link say EMPLOYEE DETAIL should give me

the entry screen for employee (which is nothing but EMPLOYEE.JSP) .At the same time the menu should always be there adjacent to the entry screen.Similarly for other link like PROVINCE DETAIL,CITY DETAIL etc...Note that each link shoudl be a separate jsp file.

Can some one give me some hint so that I can make a start.

Thanks.

[838 byte] By [manohar2] at [2007-9-19]
# 1

You need to use the following template on every page.(employee.jsp/comapny.jsp/ etc

Note the second table will actually have the code for specific jsp.

So on every page the first table acts as the links to all other pages.

<table>

<tr>

<td>

<table>

<tr><td><a href="employee.jsp">Employee Detail</a></td></tr>

<tr><td><a href="company.jsp">Company Detail</a></td></tr>

<tr><td><a href="province.jsp">Province Detail</a></td></tr>

<tr><td><a href="city.jsp">City Detail</a></td></tr>

</table>

</td>

<td>

<table>

<tr>

<td>

<!-- page content -->

content of the employee.jsp/company.jsp/province.jsp/city.jsp

<!-- -->

</td>

</tr>

</table>

</td>

</tr>

</table>

rgiri1 at 2007-7-4 > top of java,Enterprise & Remote Computing,Web Tier APIs...
# 2
Thank you very much Giri.That was very helpful.
manohar2 at 2007-7-4 > top of java,Enterprise & Remote Computing,Web Tier APIs...