Integrate Professional Rich Text Editing into your ASP.NET applications for free.
RichTextBox was developed as part of the Discussions control and is likely the most advanced freeware Rich Text Editor server control in existence.
<%@ Register Assembly="Menulab.RichTextBox" Namespace="Menulab" TagPrefix="ml" %>
<ml:RichTextBox ID="mlRichTextBox" runat="server" />
<asp:Button ID="btnSubmit" runat="server" Text="Submit" OnClick="btnSubmit_Click" />
protected void btnSubmit_Click(object sender, EventArgs e) { string userInput = mlRichTextBox.mlHtml; }
Note : you can also add RichTextBox to Visual Studio Toolbox and drag the control to your page in which case the above step 2 & 3 will be automatically done for you.