you will need to submit the hidden fields first then call them in a querystring. There are other ways but this may be the easiest rate now. here is a example you can try.
the.html
<html>
<head>
<script language="vbscript">
sub hidden()
dim var1
var1 = "blah"
form1.hidden1.value = var1
form1.nothidden.value = var1
alert var1
end sub
</script>
</head>
<body onLoad="hidden()">
<form name="form1" method="GET">
<input type="hidden" name="hidden1" value="">
<input type="text" name="nothidden" value="">
<input type=submit value="submit">
<!-- you can submit onunload or some other way, the button
is a example -->
</form>
</body>
</html>
not.asp
<html>
<head>
<script language="vbscript">
var1 = request.querystring("hidden1"

alert var1
</script>
</head>
<body>
</body>
</html>
try this and see how it works. I'm sorry if I made a mistake but I'm typing quick got to go. Let me know if you get it.
![[bomb] [bomb] [bomb]](/data/assets/smilies/bomb.gif)
I may not get it the 1st or 2nd time,
but how sweet that 15th time can be.
admin@onpntwebdesigns.com