Hi Christian
To get this right, you pass "ö" in a form to the server and then you see "?" in the dump of the form scope?
what charset your application.cfc and other templates are using only matters for literal string that are written to the template itself, for example if your template would look like this:
Only in this case the "template charset" matters only for "
Hallöchen" but not for "
form.name", let's say we call that template with
<input name="name" value="Özgür"> what matters for "
form.name" is in that case the web charset set in the admin or the application.cfc and what you have set with the function "setEncoding".
Please have in mind that "UTF-8" is not the "EierlegendeWollmilchsau", important is to use the right charset and that is maybe not UTF-8.
So what charset is used by the client to encode the form scope?
best do some tests by setting "setEncoding" for the form scope in the application.cfc, this is the fastest way to find out what is going on.
Micha