<html>
<head>
<title>CodeAve.com(Forms: Hidden Input)</title>
</head>
<body bgcolor="#FFFFFF">
Basic Hidden Input Value (method=post)<br>
<form action="http://www.codeave.com/html/post.asp"
method="post">
<input type="hidden"
name="Hidden"
value="Hidden Value">
<input type="submit"
value="Submit">
</form>
<!-- The basic hidden value with method set to
post as to not
reveal that that the value is being passed from on place to another -->
Basic Hidden Input Value (method=get)<br>
<form action="http://www.codeave.com/html/get.asp"
method="get">
<input type="hidden"
name="Hidden"
value="Hidden Value">
<input type="submit"
value="Submit">
</form>
<!-- The basic hidden value with method set to
get to reveal
the value is being passed from on place to another in the address bar -->
</body>
</html>
|