Click here to Skip to main content
15,908,673 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi all
can anyone tell me how to enable textarea to enter new line while pressing enter button??

Thanks
Posted

1 solution

In ASP.Net,
Textarea already allows Enter Key for newline.

HTML
<textarea rows="10" cols="10"></textarea>


If you're talking about ASP.Net Textbox, going for Multiline TextMode would also work as you expect:

ASP.NET
<asp:TextBox runat="server" TextMode="MultiLine">
</asp:TextBox>
 
Share this answer
 
v2
Comments
thatraja 28-Jan-12 14:03pm    
Right, 5!

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900