First page first.asp
<html>
<body>
<form action=second.asp method=post name=frmmain>
<input type=text name=value>
<input type=submit value=submit>
</form>
</body>
</html>
Second page second.asp
<html>
<body>
<%
Response.write request.form("value"

%>
</body>
</html>
On the second page it will display the value that you enter in the input box on the first page after you click the submit button
With javascript:
First page first.asp
<html>
<head>
<script language=javascript>
function gonext()
{
var x = 2;
document.frmMain.action = 'second.asp?Hip='+x;
document.frmMain.method = 'POST';
document.frmMain.submit();
}
</script>
</head>
<body>
<form action=second.asp method=post name=frmmain>
<input type=text name=value>
<input type=button value=submit onclick='gonext();'>
</form>
</body>
</html>
Second page second.asp
<html>
<body>
<%
Response.write request.querystring("Hip"

& "<hr>"
Response.write request.form("value"

%>
</body>
</html>
It will read on the first line after the "<%" sign the value from javascript and on the second line the value from the input box
Of course you will have to have IIS installed, copied the asp files under c:\inetpub\
and call them with
Regards,
Durug