fckeditor and apostrophes
I've got a system where a user uploads an html file, and then the contents of the file is extracted using an xmlparse:
<cfscript>
myxmldoc1 = XmlParse("D:\inetpub\mywebsite\editorial\#whichsection#\#Uploaded_Folder_Name#\#htmlFileName#");
selectedElements = XmlSearch(GetTheTitle, "/html/body/h1");
s = "";
for (i = 1; i LTE ArrayLen(selectedElements); i = i + 1)
s &= selectedElements.XmlText;
</cfscript>
The result of the xmlparse is shown in the FCKeditor. Works just fine, except my apostrophes aren't showing up. In the original html file, apostrophes are represented as "’"
I know right after the parse I can do a Replace or REreplace, but I tried that and it made absolutely no difference. Any ideas?
