I have a home.jsp
page and a login.jsp
page
home.jsp
i have 3 div tags as
div id="header"
div id="content"
div id="footer"
1) When i click on Login
link in home.jsp
page it redirects to login.jsp page,i need:
it should be shown on div id="content" tag in home.jsp page.
My Requirement is :: The home.jsp
should be my home page..the header and the footer should not change,
only the content which ever changes should be displayed in the div tag with id="content"
By using frames i am able to solve this,as we have target=".....", but is there any posssibility of achieving the same using div tag ?
Please Explain with an Example!