Guest_imported
New member
- Jan 1, 1970
- 0
We have a form which submits 6 hidden variables to another URL. Right now the new URL opens up in the same browser window. The code looks somethin like this...
<form name="MyName" method="POST" action="URL">
<input type="hidden" name="MyVariable" value="<%="MyValue"
</form>
My question is, how can I make this form display the results in a new window instead of the same window. And for that to happen I should be able to pass these hidden variables to the new window along with the URL.
Can anyone show me how its done?
Thanks!