<%@ Page Language="C#" AutoEventWireup="true" %> <%@ Register Assembly="CKEditor.NET" Namespace="CKEditor.NET" TagPrefix="CKEditor" %> Data Submission — CKEditor for ASP.NET Sample

CKEditor for ASP.NET Sample — Data Submission

If you want see the HTML output from CKEditor, use the Text property:

protected void Page_Load(object sender, EventArgs e)
{
    //Add CKEditor output HTML to the <pre> tag.
    preCKEditorData.InnerText = CKEditor1.Text; 
}
<p> This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p>