> Anything content that is pulled from the database displays > quotations or apostrophes as a box.
these are probably microsoft's "curly quotes" i don't think it's cf doing it, rather, it's the character set you're using on the new (cf-generated) html page that's different from the old (asp-generated) html page quickest solution is to use the same meta tag for charset that the old page did another solution is to convert the quotes upon retrieval -- microsoft's left and right single quotes are x145 and x146, left and right double quotes are x147 and x148 (note: these are not standard ascii characters), so you could use a replace function or something to convert those single quotes to x39 and double quotes to x34 or you convert the entire database, and then do the replace on insert, so that those curly quotes don't get into the database again rudy http://rudy.ca/ - You are subscribed to the CFUGToronto CFTALK ListSRV. This message has been posted by: "rudy" <[EMAIL PROTECTED]> To Unsubscribe, Please Visit and Login to http://www.CFUGToronto.org/ Manager: Kevin Towes ([EMAIL PROTECTED]) http://www.CFUGToronto.org/ This System has been donated by Infopreneur, Inc. (http://www.infopreneur.net)
