Hi,
I'm giving the steps to reproduce that.
I have just removed the "EditorWysiwygModeCss="../example.css"" in the default page.
Now the cuteeditor will be
<CE:Editor id="Editor1" runat="server"></CE:Editor>
Then run the default page
1. Type "Welcome" in the cuteeditor.
2. Click the "Bold" button.
3. Press "Enter" key.
4. Double line will be created.
5. Type "Welcome" in the cuteeditor.
The output will be
Welcome
Welcome
Now include the "EditorWysiwygModeCss="../example.css"" in the default page.
Now the cuteeditor will be
<CE:Editor id="Editor1" EditorWysiwygModeCss="../example.css" runat="server"></CE:Editor>
Then run the default page
1. Type "Welcome" in the cuteeditor.
2. Click the "Bold" button.
3. Press "Enter" key.
4. Single line will be created.
5. Type "Welcome" in the cuteeditor.
The output will be
Welcome
Welcome
The html code is same for both the situation
<p>Welcome</p> <p><strong>Welcome</strong></p>
While the "EditorWysiwygModeCss="../example.css"" is not included, the pasted word is also getting the format of the last character as mentioned in the previous post.
Please, reply as soon as possible.