Forum Moderators: open
<form name="package_search" action="http://widgets.com/Search.aspx" id="package_search" target=MainFrame>
This works fine however what I would like is the results to be displayed in an iframe on another page and this page open in the parent window. Is this possible?
<form name="package_search" method="POST" action="http://widgets.com/NewPage.aspx" id="package_search" target="_top">
And then the NewPage.aspx would need to get read the POSTed values, and pass these onto the iframe.
e.g.
<iframe src="http://widgets.com/NewFramePage?value1=<%=value1%>&value2=<%=value2%>"></iframe>