Or if you *had* to have it with no querystring AND you couldn't URL mask it and you didnt want to put everything into frames. The only solution would be to make the links in your tables form values themselves and when they click the link it goes through to form.asp from which you can retrieve the value by doing a request form.
It's a pain in the

way of course, but it achieves what you need it to.
Heres some sample code for you too

Place this in the head tag:
function useMeInsteadOfQueryString(frmValue){
document.frmName.frmHidden.value = frmValue
document.frmName.Submit()
}
|
Then before u write the table:
<form name="frmName" method="post" action="form.asp">
<input type="hidden" name="frmHidden">
</form>
|
Then the links in the table would be:
<a href="javascript:useMeInsteadOfQueryString('1')">My Link</a>
|
Does what you want if everything else is unavailable to you

Hope that helps
Chris