Re: CuteEditor support for arabic???

  •  09-01-2010, 9:48 AM

    Re: CuteEditor support for arabic???

    Dear mike.chambers,
     
    By default Cute Editor maps most special characters to the equivalent HTML entity automatically. You can turn it off by setting property "UseHTMLEntities"  to "false".
     
    You can do the following test:
    1. Update CuteEditor to:
    <CE:Editor id="Editor1" UseHTMLEntities="false"  runat="server" ></CE:Editor><br />
    2. Run CuteEditor, input  "Δουλεύουν" in tab "Normal"
    3. Switch to tab "HTML", you will find the following html code:
        "Δουλεύουν",  these input text is not converted.
    4. Update CuteEditor to:
    <CE:Editor id="Editor1" UseHTMLEntities="true"  runat="server" ></CE:Editor><br />
    2. Run CuteEditor, input  "Δουλεύουν" in tab "Normal"
    3. Switch to tab "HTML", you will find the following html code:
        "&#916;&#959;&#965;&#955;&#949;&#973;&#959;&#965;&#957;",  these input text is converted.
     
    Thanks for asking
     
     
     
View Complete Thread