Morning All!
Have a small problem, but is something that I can't get past. When a user pastes text from Microsoft Word that may contain words that have a ' or " in them the editor sends them as �, or a ?. Is there a way in CFM or ASP to find and replace this characters? The Word formatting is not startard ' and "... Below is a pasted text from Word:
word and word <--- See the difference from 'word' and "word".
Thanks guys!
Dave
Have a small problem, but is something that I can't get past. When a user pastes text from Microsoft Word that may contain words that have a ' or " in them the editor sends them as �, or a ?. Is there a way in CFM or ASP to find and replace this characters? The Word formatting is not startard ' and "... Below is a pasted text from Word:
word and word <--- See the difference from 'word' and "word".
Thanks guys!
Dave
RE: Pasted Text from Word...
#URLDecode(Replace(URLEncodedFormat(Overview),"%EF%BF%BD","'","all"))#
RE: Pasted Text from Word...