My requirement is to Didivide the Jsp into Multiframes. Initially first frame should be loaded.When we click on one button we need to load second frame.When we click on some button Third Frame should be loaded.
Automatically every should be Refreshed.
Please anybody can help ASAP.
Thanks,<br />Venkatreddy V
paritosh ranjan
Ranch Hand
Joined: Aug 24, 2007
Posts: 62
posted
0
create a form in your jsp page whose action is on some other jsp page. It would be like this <form action="secondPage.jsp"> <input type="submit"> </form> When you press this button then secondPage.jsp opens. You can do the same thing in secondPage.jsp for thirdPage.jsp.