Reputation: 27
I need to add rich text box in asp.net for adding multiline data in text box
Upvotes: 0
Views: 5038
Reputation: 11155
You can use this below code for multiline textboxes,
<asp:TextBox id="txtBox" TextMode="multiline" runat="server" />
Upvotes: 1
Reputation: 11309
You can use ASP:TextBox and set property TextMode="multiLine" Rows="2" to use multi line text box.
Upvotes: 0