Thanks
HĄNGeL
I believe this is a browser language setting problem, and I am not sure
whether indeed a different browser setting would help (each user would have
to set it for himherself, if it would help at all). There was a thread about
the same problem some weeks ago, you might be find it via Google.
--
Met vriendelijke groet / Mit freundlichen Grüßen / With kind regards
Christoph Bouthillier
post (at) no-no-spam tekstotaal dot com
Please remove "no-no-spam" when e-mailing me directly - Thanks
------
"H¡NGeL" <hin...@hotmail.com> schreef in bericht
news:b12suc$t7cd4$1...@ID-138079.news.dfncis.de...
> H¡NGeL
>
>
> H¡NGeL
>
>
If you are using Instant Web Publishing, I don't think you can at
the server end.
With Custom, you can declare a language as part of the -format files.
OK, a little background... Web browsers decide what language
character set to use based on one of two things. The best
is a content type declaration in the head of the document:
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
This one declares English as being the language of the page.
You can also manually set most browsers to alternative text
types - for Turkish, this would be ISO 8859-9. My fairly
ancient version of Netscape Communicator allows this, so newer
browsers should as well.
So, if using Instant Web Publishing, your end users has better
know how to manually change the settings, and what setting to
change them to.
Or you use Custom Publishing and declare the pages correctly
as being Turkish.
And I will now get this answer added to the FAQ.
Cheers
Webko
Thanks All
HĄNGeL
"Tim Booth" <T.B...@isu.usyd.edu.au> wrote in message
news:3E35AB60...@isu.usyd.edu.au...
could you be a bit more specific about how you solved this with Javascript?
Sounds interesting, and the question has been raised before.
--
Met vriendelijke groet / Mit freundlichen Grüßen / With kind regards
Christoph Bouthillier
post (at) no-no-spam tekstotaal dot com
Please remove "no-no-spam" when e-mailing me directly - Thanks
------
"H¡NGeL" <hin...@hotmail.com> schreef in bericht
news:b15v96$vacp0$1...@ID-138079.news.dfncis.de...
> Thank you for all answers, I solved :), this is not Code Page problem,
> FileMaker not support Turkish Characters on the web (this is problem !! ),
> if properly view Turkish characters in browers you must use Javascript,
> covert codes to characters each side.
>
> Thanks All
> H¡NGeL
Sample of JavaScipt;
<script language=javascript>
function do_convert(value){
var astr = new String(value);
var s, i
for(i=0;i<astr.length;i++){
switch(astr.charAt(i)){
case "&":
s=astr.substring(i, i+6);
switch(s){
case "€":
case "ð": document.write("Turkish Character"); break;
};
i=i+5;
break;
default: document.write(astr.charAt(i));
};
};
};
</script>
H¡NGeL
"Christoph Bouthillier" <po...@tekstotaal.com> wrote in message
news:8XvZ9.162840$lI4.2...@castor.casema.net...