I have a form with two textareas.
The following creates one of them:
<textarea name='txtLastComments' style='font: Arial; color: #00008B; background-color: #E3F2F7; border: 1px inset #00008B;' readonly background-color='f0f8ff' cols='35' rows='2' maxlength='4000'><%= rsZipcodes("ZIPComments") %></textarea>
The second is the same but not read only and without the formatting. It also is set for 3 rows.
Entries in the second are concatinated with entries in the first and then displayed in the first (actually, the contents typed into the second are concatinated with the contents of the recordset field from which the first textarea is updated). All is fine as long as the total number is no more than one more than the number of rows in the textarea attribute. I've tried using the growable attribute, but that doesn't do anything; it still gives me an error saying that I am trying to enter the wrong type of data. (The field underlying the text areas is varchar(4000). Is there any way to make the textarea take more rows? Is there something else I can use instead (that has scroll bars)?
The following creates one of them:
<textarea name='txtLastComments' style='font: Arial; color: #00008B; background-color: #E3F2F7; border: 1px inset #00008B;' readonly background-color='f0f8ff' cols='35' rows='2' maxlength='4000'><%= rsZipcodes("ZIPComments") %></textarea>
The second is the same but not read only and without the formatting. It also is set for 3 rows.
Entries in the second are concatinated with entries in the first and then displayed in the first (actually, the contents typed into the second are concatinated with the contents of the recordset field from which the first textarea is updated). All is fine as long as the total number is no more than one more than the number of rows in the textarea attribute. I've tried using the growable attribute, but that doesn't do anything; it still gives me an error saying that I am trying to enter the wrong type of data. (The field underlying the text areas is varchar(4000). Is there any way to make the textarea take more rows? Is there something else I can use instead (that has scroll bars)?