We need the two paste operation:
Paste Plain Text
Paste from MS Word (with cleanup)
in the new HTMLEditorExtender. Like we had in the old HTMLEditor.
Comments: Not sure if anyone has done this but it seems to work: In Page_Load check for IsPostBack... set your 'Text' property to use the Decode method... like: protected void Page_Load(object sender, EventArgs e) { if (IsPostBack) { tbContent.Text = HttpContext.Current.Server.HtmlDecode(tbContent.Text); } } Seems to keep the expected format in shape with text pasted from Word
Paste Plain Text
Paste from MS Word (with cleanup)
in the new HTMLEditorExtender. Like we had in the old HTMLEditor.
Comments: Not sure if anyone has done this but it seems to work: In Page_Load check for IsPostBack... set your 'Text' property to use the Decode method... like: protected void Page_Load(object sender, EventArgs e) { if (IsPostBack) { tbContent.Text = HttpContext.Current.Server.HtmlDecode(tbContent.Text); } } Seems to keep the expected format in shape with text pasted from Word