NetTalk Central

Author Topic: Cyrillic  (Read 2474 times)

LyGilCo

  • Newbie
  • *
  • Posts: 17
    • View Profile
    • Email
Cyrillic
« on: July 01, 2008, 11:45:44 PM »
Hi,
      We have had a request to translate our web server app into Russian (Cyrillic).

The templates (unfortunately) seem to only allow entry
of ascii rather than unicode.

Is this doable in any way?

Cheers

Murray

Bruce

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 11186
    • View Profile
Re: Cyrillic
« Reply #1 on: July 02, 2008, 04:08:33 AM »
Hi Murray,

Alas C6 doesn't really support unicode, so there may be an issue there.
I believe C7 has unicode support.

There may be other ways of doing Cyrillic though. There are plenty clarion programmers in Russia, which seems to imply there are many possibilities. I'm guessing the place to start is to set the pages (via CSS) to use a font that supports Cyrillic.

You can also change the HTML Charset that the server uses by setting it in
the p_web.site.HtmlCharset property.
To change it on a site-wide basis set this property in the WebHandler, in the ProcessRequest method, before the parent call.

For Cyrillic you could try setting it to
ISO-8859-5
 
Cheers
Bruce

LyGilCo

  • Newbie
  • *
  • Posts: 17
    • View Profile
    • Email
Re: Cyrillic
« Reply #2 on: July 02, 2008, 04:31:10 AM »
Thanks Bruce, as always

I will try