Forum Moderators: open
I have:
respose.redirect("page2.asp?id=1&name=mike")
But I don't want the variables & data to appear in the url in the browser.
Is this possible?
Cheers
Mike
<form name="login" action="file.asp" method="post">
<input type="hidden" name="id" value="1">
<input type="hidden" name="name" value="mike">
</form>
basically you store all the parameters in hidden fields and the use a javascript to submit the document. like this:
<body onload="document.login.submit();">
NOTE: where it says document.login "login" is the name of the form
hope that helps