In this article I will explain with example and attached sample code, how to use and integrate the ASP.Net AJAX Control Toolkit HtmlEditorExtender Rich Text Editor in a website.
 
 

Download and Install AJAX Control Toolkit

In order to download and install AJAX Control Toolkit, please refer the following article.
 
 

Register AJAX Control Toolkit

You will need to register the AJAX Control Toolkit assembly in order to use the AJAX Control Toolkit’s controls.
You need to place the following line just below the @Page directive.
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="asp" %>
 
 

HTML Markup

The HTML Markup consists of following controls
ScriptManager – For enabling ASP.Net AJAX.
TextBox – For Capturing Text.
HtmlEditorExtender - Enhanced text editing tool.
Button – For Showing text submitted.
Label – For Showing TextBox Value and showing to user.
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<asp:TextBox ID="txtEditor" runat="server" Width="300" Height="200" />
<asp:HtmlEditorExtender ID="HtmlEditorExtender1" runat="server" TargetControlID="txtEditor" EnableSanitization="false">
</asp:HtmlEditorExtender>
<br />
<asp:Button Text="Submit" runat="server" OnClick="Submit" />
<br />
<asp:Label ID="lblContents" runat="server" />
 
 

Displaying contents of HtmlEditorExtender using Label control in ASP.Net

When the Submit button is clicked, the contents of the AJAX Control Toolkit HtmlEditorExtender Rich TextBox are displayed in the Label control.
C#
protected void Submit(object sender, EventArgs e)
{
    lblContents.Text = txtEditor.Text;
}
 
VB.Net
Protected Sub  Submit(sender As Object, e As EventArgs)
    lblContents.Text = txtEditor.Text
End Sub
 
 

Screenshot

ASP.Net AJAX Control Toolkit HtmlEditorExtender Example
 
 

Possible Errors

You might get the following errors. I have already written articles with the help of which you can solve them.
ASP.Net AJAX Control Toolkit HtmlEditorExtender Example
 
ASP.Net AJAX Control Toolkit HtmlEditorExtender Example
 
 
 

Demo

 
 

Downloads