Posted by gondar |
Filed under multiline, maxlenght, limit, text
in a singleline textbox, is easy, just set the maxlenght value.. but when the textbox is set to multiline, all we no to do is go to source code and add the following to the asp:textbox tag:
onkeypress='return (this.value.length <= 200);'
where the 200 is the maximum characters you want to allow users to write
hope it helps :)
68b5e92a-914e-4d8b-bc40-1a448902006a|0|.0