Use a frameset with a 1 pixel wide frame for the response
<frameset cols="*,1" frameborder="NO">
<frame src="page1.asp" name="main" scrolling="auto">
<frame src="blank.html" name="results" scrolling="NO" noresize>
</frameset>
In page1.asp:
<form action="page2.asp" target="results" method="POST">
--
Mark Schupp
Head of Development
Integrity eLearning
www.ielearning.com
"Matt" <an*******@discussions.microsoft.com> wrote in message
news:42**********************************@microsof t.com...
Is it possible to post form data and open an invisible window??
For example, in page1.asp
<form action="page2.asp" method="POST">
It will post the form data from page1.asp to the server, and open
page2.asp. But I dont want to make page2.asp invisible. Any ideas?? Is it
possible??
Please advise. Thanks!!