Index: /CKEditor.NET/trunk/CKEditor.NET/CKEditorControl.cs
===================================================================
--- /CKEditor.NET/trunk/CKEditor.NET/CKEditorControl.cs	(revision 6695)
+++ /CKEditor.NET/trunk/CKEditor.NET/CKEditorControl.cs	(revision 6696)
@@ -1049,6 +1049,5 @@
 			if (this.config.htmlEncodeOutput)
 			{
-				string postedValue = postCollection[postDataKey];
-				postedValue = postedValue.Replace("&lt;", "<").Replace("&gt;", ">").Replace("&amp;", "&");
+				string postedValue = HttpUtility.HtmlDecode(postCollection[postDataKey]);
 				if (this.Text != postedValue)
 				{
