Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Can you specify the number of characters alowed in an input box?

Status
Not open for further replies.

puck2

Programmer
Sep 8, 2003
7
0
0
US
In VBScript can you specify the number of characters alowed in an input box?
I want to limit the number of chatarcters the user is able to place into the input box or make it word wrap after so many characters.
The word wrap method would be prefered.
TIA,
puck2
 
If you are talking about a HTML form, then just use HTML :

<input type=&quot;text&quot; size=&quot;10&quot; maxlength=&quot;8&quot;>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top