I'm developing a javascript to populate a text box, however I came across a situation that is generating me difficulty. I need popular with this message for example:
TEST
TEST
TEST
But I can not bring row breaks when I populate the field, I tried with /n,<br>, </ br>, vbCrLf
, but I did not succeed. Someone could help me.
Note that my textbox in html looks like this:
<td colspan="2">
<textarea id="teste" class="CaixaTexto" runat="server" style="width: 600px;
height: 90px;" cols="97" rows="5"></textarea>
</td>
Att,