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 gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

restrict number of characters in a input box 1

Status
Not open for further replies.

schwankieog

Programmer
Jul 25, 2001
43
US
i am writing an asp page that will input information into a database. i know the asp and there is no problem with that, but i need to be able to limit the number of characters inputed in a input box to 3 for a certain field in my database. please let me know if there is a way to do this.
 
Do you just mean this?

<input type=&quot;text&quot; maxlength=&quot;3&quot;>

The maxlength attribute will limit the number of characters you can type.

Mike
 
thanx for the help. just couldnt think of it and couldnt find it in any reference books.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top