Hi,
I have a page which has a form on it. In this form I have some fields which could have special characters like :
ë ; ç ; ê ; è ; ï etc etc etc.
When I do a request.form on the page which is using this data there is no problem until on that same page I start to create a FCK Instance !
The request.form data suddenly turns into ascii data ?
Why is this happening and how can I prevent the creation of the FCK instance messing up other data on the same page ?
Thanks in advance...
I have a page which has a form on it. In this form I have some fields which could have special characters like :
ë ; ç ; ê ; è ; ï etc etc etc.
When I do a request.form on the page which is using this data there is no problem until on that same page I start to create a FCK Instance !
The request.form data suddenly turns into ascii data ?
Why is this happening and how can I prevent the creation of the FCK instance messing up other data on the same page ?
Thanks in advance...
RE: Special Characters problems
This is my code :
variable1=request.form("value1")
response.write variable1
Without create instance on the page the result:
output : Aloè
With the create instance on the page the reult is:
output: Aloè
How is this possible ???
RE: Special Characters problems
If someone ever runs into this. Do the following which absolutely makes no sense att all, but it works...
Make a new fckeditor.asp file.
open up the old original one.
copy all text and paste it into your new file.
replace your old fckeditor.asp file with your new one.
problem gone.
if someone can explain this I would appreciate it !!
RE: Special Characters problems