Vicky
Vicky

Reputation: 2097

MultipleLines text Box

I need to implement functionality shown in diagram(text area with formatting capability). Can someone just point me in the correct direction?

Note-As Soon as I click on Text Area,this formatting tool comes automatically above.

Text Area with Formatting option

I am trying something like below code:

  <asp:TextBox id="TextArea1" TextMode="multiline" Columns="50" Rows="5" runat="server" /></div> 

OR

  <textarea id="TextArea2" runat="server" name="S1" Columns="50"></textarea></p>

Any Suggestion?

Upvotes: 1

Views: 42

Answers (1)

alexan
alexan

Reputation: 371

The two WYSIWYG rich text editors that have stood the test of time are CKEditor and TinyMCE.

For most of the projects, the difference between the two that you should care about is which editor offers the feature set and appearance that are most similar to what you have in mind.

The discussion for which one is better than the other won't be very fruitful because both are very good in their own ways.

Upvotes: 1

Related Questions