Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Left hand Search Window

Status
Not open for further replies.

Ouch

Programmer
Jul 17, 2001
159
GB
I am opening a page in the left hand search window an tryning to submit the results to a page that opens in the main window can anyone help

<SCRIPT LANGUAGE=&quot;JScript&quot;>
window.open(&quot;p_contents_garry.htm&quot;, &quot;_search&quot; ,&quot;top=115, left=0,width=200,height=480,status=yes,toolbar=no,menubar=no,location=no&quot;);

</SCRIPT>

<form method=&quot;POST&quot; action=&quot;p_individuals_garry.asp&quot; name=&quot;Form1&quot;>

<input type=&quot;text&quot; name=&quot;ID&quot; size=&quot;20&quot;></font></td>
<input type=&quot;submit&quot; value=&quot;Submit&quot; name=&quot;B1&quot;>
<input type=&quot;reset&quot; value=&quot;Reset&quot; name=&quot;B2&quot;>
</form>

how can i get it to post to the main window
 
try this way

<form method=&quot;POST&quot; action=&quot;p_individuals_garry.asp&quot; TARGET=&quot;_search&quot; name=&quot;Form1&quot;>
.....
</form>
________
George, M
 
i sorted it...

target= &quot;_main&quot; get me back to the main window
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top