Re: Link Between pages NOT using the GET method



You can do it using POST with some javascript involved.
1. Make empty form
<form myname="myform">
<input type=hidden name=parameter value=1>
</form>

2. Your link should look like
<a href="javascript:document.myform.submit();">this is a link to submit
form</a>

George.

"Samuel Shulman" <samuel.shulman@xxxxxxxxxxxx> wrote in message
news:%23kk7yuf$GHA.4592@xxxxxxxxxxxxxxxxxxxxxxx
Hi

I need to add a link from one page to another and send a parameter NOT
using the Get

What would be normally the way to do that? Can I use the post method and
how?

Thank you,
Samuel



.