Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
545
WebHTMLEditor.TextXhtml
posted

The output from this is including a bunch of " " characters for spaces and they aren't translating very well when I go to store the information in a database, they are being turned into "ᙦ" in the database. Do I need to use a special encoding or something that I'm missing?

Parents
No Data
Reply
  • 105
    posted

    I have the same issue.

    I am surprised Infragistics has not released an update for this.

    I am also surprised Google couldn't find this page with terms "Infragistics WebHTMLEditor ᙦ"

     

    I used the String.Replace to replace the  ᙦ  with  .  This fixes the issue without messing with the spacing/formatting of the string.

    stringXhtml =  stringXhtml .Replace("ᙦ", " ")

     

    The problem does not seem to appear with WebHTMLEditor.Text, only with WebHTMLEditor.TextXhtml.

Children