Forum Moderators: open
is it possible to send POST data from an asp page?
senario: asp page is a click through counter of a sort, but i then want to redirect to another website.
i could do a simple redirect but i wish to hide the querystring, i thought i could do this possibly by POST in some way, possibly not ...
any pointers
i feel sure i should be able to send post headers to the new domain, i must be searching wrong because all i can find is how to do it with a webform
Or you could do a form without a submit button, and javascript submit when the page is loaded, which would redirect your user and post the variables without them visible in the querystring. The variables would be in the page source, though.