"Victor" wrote in message news:Ou**************@TK2MSFTNGP10.phx.gbl...
:I need to redirect to another web page, but that redirect will include the
: submission of form data. So, unlike ServerXMLHTTP which stays on the
: originating web page, I need the script to redirect to the page that I'm
: submitting the POST data to (without pressing a submit button).
I'm doing the second one Curt mentioned so I can post the data, perform more
processing with ASP and then have the form submit to another page when it is
rendered to the client. I take input from the client who then submits the
data, I process it, put what I need in the form and submit it when the page
loads to take me to a remote secure site. It works well.
<body onload="document.myform.submit()">
<form name="myform" ... >
<input type="hidden" ... />
<input type="hidden" ... />
</form>
..
..
..
</body>
--
Roland Hall
/* This information is distributed in the hope that it will be useful, but
without any warranty; without even the implied warranty of merchantability
or fitness for a particular purpose. */
Technet Script Center -
http://www.microsoft.com/technet/scriptcenter/
WSH 5.6 Documentation -
http://msdn.microsoft.com/downloads/list/webdev.asp
MSDN Library -
http://msdn.microsoft.com/library/default.asp