CodeAve.com CodeAve.com - HTML - Forms
ASP
JavaScript
CSS
HTML
·Forms
·Hyperlinks
·Headers
·Images
·Tables
·Text Display
·Miscellaneous
·Contents
·What's New?
Maps
Links
Mail List
Search
Sitemap


 


Hidden Input Fields
Hidden input fields allow for the passing of informaton from one page to another without displaying the informtion being passed on the output view in the browser. All hidden input fields are viewable by viewing the source of the document.
View the Output
Text View
Print View
Mail this Link
Download the Code

<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>

 

 

 



ASP: What's New? | Articles | Script Writers | Database Display | Read/Write
Server Variables | Response Objects | Random Events | Miscellaneous
HTML: Forms | Hyperlinks | Headers | Tables | Hyperlinks | Headers | Text Display
JavaScript: Document Info | Forms | Images | Navigation | Script Writers
CSS: Basics | Page Display | Text Display | Script Writers | Miscellaneous
Links | Search Engine db |  Privacy Statement |  Advertising Rates |  Email

CodeAve.com is hosted by MyHosting.com
Donate Food Online with a Mouse Click at TheHungerSite.com
Donate Land Online with a Mouse Click at TheRainForestSite.com
© 1999 - 2010 CodeAve.com
All Rights Reserved