Encodering van european characters
I've had it!!! this is the @#$% time that i struggled with the encoding of MX but I think I know now why this is....
MX first release you need this as your character code in the application.cfm
<cfcontent type="text/html; charset=ISO-8859-1">
<cfset setEncoding("URL", "ISO-8859-1")>
<cfset setEncoding("FORM", "ISO-8859-1")>
IN MX 6.1 you need this, because apparently the above doesn't work then anymore....
<cfcontent type="text/html; charset=CP1252">
<cfset setEncoding("URL", "CP1252")>
<cfset setEncoding("FORM", "CP1252")>
I hope I am correct in this.. if not.. please let me know!!
3603 viewed | Your opinion... | del.icio.us | Digg it | Tjarko @ 12/11/03 0:00 cet



