Flash post to asp

Info

Right let me start

I am writing a ASP page receiving some values from a post form. Once recieved the asp then redirects to another page with those value displayed on it. Very simple right! when I run it within the browser and using basic html post form.

However I am doing a Flash version, this time around the value is sent from flash to the asp page, using the “POST” method, this seems to work fine also.

Now the problem

Becuase I want to be running the flash within a projector NOT a browser, the value is passed from the flash projector to the Asp page using *“loadVariablesNum” *POST, after ASP as received the value it then opens a browser, and does the neccesarry redirecting etc.

How Far I have got

I know the Asp is recieving this value, because I have it also sent me an email with this value been passed to it. But the problem is *“loadVariablesNum” *doesn’t load a browser so there is no way the redirecting can be done right??,

Here is a snippet

<<<form action="[[color=#0000ff]page.asp[/color]](javascript:ol(‘http://www.2simpleweb.com/soft_makeorder.asp’);)" method=“post” name=“form”>
<input name=“val1” type=“hidden” id=“vala1” value=“blah”>
<input name=“val2” type=“hidden” id=“vala2” value=“num3”>
<input name=“val3” type=“hidden” id=“vala3” value=“123456789”>
<input name=“val4” type=“hidden” id=“vala4” value="[u][color=#0000ff]S@blahblah.com[/color][/u]">
<input name=“val5” type=“hidden” id=“vala5” value=“123456789”>
<input name=“val6” type=“hidden” id=“vala6” value=“987654321”>
<input type=“submit” name=“Submit” value=“Submit”>
</form>

Thanks in advance