user518342
user518342

Reputation: 27

How to add rich textbox in asp.net

I need to add rich text box in asp.net for adding multiline data in text box

Upvotes: 0

Views: 5038

Answers (2)

You can use this below code for multiline textboxes,

<asp:TextBox id="txtBox" TextMode="multiline" runat="server" />

Upvotes: 1

Pankaj Agarwal
Pankaj Agarwal

Reputation: 11309

You can use ASP:TextBox and set property TextMode="multiLine" Rows="2" to use multi line text box.

Upvotes: 0

Related Questions