I have two pages 1.) form page 2.) I-frame page.
What I am trying to do is: Once the form page is submitted, javascript in the second page would retrieve the values and place them into a an I-frame with a given url.
Example:
=== Page One ===
<form action="page123.html">
<input type="text" name="query">
<input type="submit" value="search">
</form>
=== Page Two ===
Javascript retrieves query values then places them into a iframe.
<iframe src ="/default.asp?client='$query_value' " width="100%"></iframe>
==== End ===
I can not use any server side code!
Thanks in advance.
Diego