how to invoke a jsp value to another jsp
Hi i have a problem on how to invoke a jsp page from jsp page.
I have this function in index.jsp:
<script language="JavaScript">function price(){ window.location="search_date.jsp" + document.forms['test'].getElementById('price');}</script>
"document.forms['test'].getElementById('price'); " are getting the values from another jsp (search_date).
<div class="tabbertab" title="Price" id="price"><h2>Tab 2</h2>
<form name="test">
There are three tabs in search_date jsp, the above codes are for price tab.
Im going to click on an image link in index.jsp, it will direct me to the price tab instead of two other tabs. How can i achieve this?
Thanks,
tiffany

