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


 


Text Boxes
Text boxes enable users to directly input a line of text into your application. This is very useful for when you might ask users for their name, e-mail address, password or other small piece of information. Constraints can be placed on the size of the text box and amount of input you allow the user to enter. The following examples will demonstrate some of the basics of text boxes.
View the Output
Text View
Print View
Mail this Link
Download the Code

<html>
<head>
<title>
CodeAve.com(Forms: Text Box)</title>
</head>
<body bgcolor=
"#FFFFFF">

Basic Text Box<br>
<form action=
"post.asp" method="post">
<input type=
"text" name="Text">
<input type=
"submit" value="Submit">
</form>
<!-- The basic text box -->

<br>
Text Box with a Specific Width<br>
<form action=
"post.asp" method="post">
<input type=
"text" name="Text" size="15">
<input type=
"submit" value="Submit">
</form>
<!-- Size="numeric value" will adjust a text box horizontally -->

<br>
Text Box with a Specified Initial Value<br>
<form action=
"post.asp" method="post">
<input type=
"text" name="Text" value="Initial Value">
<input type=
"submit" value="Submit">
</form>

<!-- value="intial value" will place text inside the text box -->

<br>
Text Box with a Specified Initial Value<br>
<form action=
"post.asp" method="post">
<input type=
"text" name="Text" maxlength="5">
<input type=
"submit" value="Submit">
</form>
<!-- maxlength="numeric value" will limit the number of characters
that can be entered by a user -->

<br>
Text Box - Passwords<br>
<form action=
"post.asp" method="post">
<input type=
"password" name="Text">
<input type=
"submit" value="Submit">
</form>

<!-- By changing the input type to password the text box will allow
input, but will block the display in the browser -->

</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
Maps: Map Script Writers | Bing Maps | Google Maps
Privacy Statement

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