Re: Custom Begin Tag Removed using PasteHTML

  •  08-09-2006, 4:39 PM

    Re: Custom Begin Tag Removed using PasteHTML

    I downloaded the trial version of Cute Editor.NET to test it on .NET 2.0 framework. I found a problem about custom tags too. I set Editor1.BreakElement = CuteEditor.BreakElement.P, so I can use <P> instead of <DIV>.
     
    There is the problem:
    • type in <p><placeholder>[[First Name]]</placeholder></p> in HTML view.
    • switch to Normal view and place the cursor at the end of the text, then press Enter.
    • switch to HMTL view you can see the following html code. The tags </p><p> are inserted before the custom closing tag </placeholder>.
    <p>
    <placeholder>[[First Name]]</p>
    <p></placeholder>
    </p>
     
    Something wrong with my settings? Any help would be appreciated.
     
     
View Complete Thread