Click to See Complete Forum and Search --> : limiting the number og chars in a TEXTAREA


pelegk1
10-15-2003, 03:53 AM
how do i limit the number of chars in a text area?

jakykong
10-20-2003, 12:20 AM
it's not anything to do with asp, it is just plain old html. it's a property in the input tag. see below.

[code]<input type=text name=inputfield length=12>[code]

the length=numofchars property of the input tag works with text fields and password fields. Hope it helps. :D