I have set the CE options as follows:
<CE:Editor ID="headerTextTextBox" runat="server" Text='<%# Bind("headerTExt") %>'
ActiveTab="Edit" AutoConfigure="Minimal" ContextMenuMode="Minimal"
EditorWysiwygModeCss="~/css/MainCSS.css"
ShowDecreaseButton="False" ShowEnlargeButton="False"
URLType="Default" Width="100%"
ShowPreviewMode="False" UsePhysicalFormattingTags="true" height="20px"
CssClass="entry_grid" ResizeMode="AutoAdjust" AllowPasteHtml="False"
BreakElement="Br" ShowGroupMenuImage="False" ResizeStep="20" EditorOnPaste="PastePureText">
<FrameStyle BackColor="White" BorderColor="#669966" BorderStyle="Solid" BorderWidth="2px" />
</CE:Editor>
(Note that I have set EditorOnPaste="PastePureText".)
When I paste from Word, the HTML view shows:
<span style="font-size: 10pt; color: black; font-family: Arial; mso-fareast-font-family: 'Times New Roman'; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA">when the world was small and organizations were traditional, most people worked some kind of a standard shift, usually from 8:00 a.m. to 5:00 p.m., and managers could see that their staff was working just by looking at them.</span>
I thought that PastePureText stripped all tags. I've also tried PasteFromWord -- same result.
Please help!
thanks