call to url while keep the form post parameters
Hi,
I"m writing a page in asp. When the user presses on Submit the form is passed by Post to a url in a different site.
The problem is that i want to do this action in script, meaning call a function which will call the url and pass the form by Post.
There are :
Server.Transfer - passes only to a page in the same site, so no good for me.
Response.Redirect - Doesnt pass and form or query parameters so no good for me again :(
So how will i do this?
Thanks in advance
|