I have a problem with a text box that is defined on an asp.net page. The text area is filled at the end with text read directly from the mssql database.
<div id="emailForm" runat="server" style="display:inline;">
<textarea name="Body" id="Body" rows="20" cols="20">
text in here
<textarea>
</div>
The following CSS is applied to the emailForm element:
padding: 5px;
width: 750px;
font-family: Lucida Sans, Verdana, Arial, Helvetica, sans-serif;
font-size: 0.9em;
margin: 0px 0px 10px 0px;
border: 2px solid #ccc;
and the text area itself:
height: 360px;
Some users said that although they can edit the text in the text box, they cannot get a return key to work. Unable to add new lines?
I searched the web but could not find an example of this. If anyone has any bright ideas that I would like to hear. Thank.
source
share