|
Home > Archive > IIS ASP > June 2004 > Russian in ASP pages?
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
Russian in ASP pages?
|
|
| Steven 2004-06-26, 10:18 am |
| Hi all,
I would like to create a site which shows text in English or in Russian
(depending on the user's choice).
Problem is that I can't save the pages in Unicode (Unicode can contain
Russian characters), because IIS can't handle Unicode ASP pages (correct,
right?!).
So how can I have normal (ASCII) ASP pages, which can show either text in
English or Russian (charset Windows-1251)???
Thanks!
Greetings, Steven
| |
| Evertjan. 2004-06-26, 10:18 am |
| Steven wrote on 21 jun 2004 in microsoft.public.inetserver.asp.general:
> IIS can't handle Unicode ASP pages (correct, right?!).
ASP is a platform for serverside programming,
and has nothing to do with the rendering of the HTML part of the page as
such.
IIS, which has its own NGs
[microsoft.public.inetserver.iis, please follo up over there],
could be so naive, that it can't handle Unicode,
but I don't think you are correct.
--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
| |
| Steven 2004-06-26, 10:18 am |
| Evertjan,
Posted reply in MS.Public.Inetserver.IIS...
Greetings, Steven
"Evertjan." <exjxw.hannivoort@interxnl.net> schreef in bericht
news:Xns950F7073BA76Deejj99@194.109.133.29...
> Steven wrote on 21 jun 2004 in microsoft.public.inetserver.asp.general:
>
> ASP is a platform for serverside programming,
> and has nothing to do with the rendering of the HTML part of the page as
> such.
>
> IIS, which has its own NGs
> [microsoft.public.inetserver.iis, please follo up over there],
> could be so naive, that it can't handle Unicode,
> but I don't think you are correct.
>
>
>
> --
> Evertjan.
> The Netherlands.
> (Please change the x'es to dots in my emailaddress)
| |
|
| Hi!
A link about saving ASP files in unicode format.
http://support.microsoft.com/defaul...b;en-us;q245000
I run a Unicode (UTF-8) ASP site and I don't have any text directly in the
ASP pages (pages are built up in COM+ components where texts are fetched
from a database set up to handle unicode). In the top of every page I set
the codepage directive (65001=UTF-8)
<%@ Language=VBScript CodePage=65001%>
I also add a http header on my pages (set from IIS admin tool). The quotes
("") should not be added.
Custom HeaderName: "Content-Type"
Custom Header Value: "text/html; Charset=utf-8"
Regards
/Hans
| |
| George Hester 2004-06-26, 10:18 am |
| "IIS can't handle Unicode ASP pages..." wrong. It's just =
slow..................
--=20
George Hester
__________________________________
"Steven" <steven@nomailaddresshere.com> wrote in message =
news:uHUIbx2VEHA.1764@TK2MSFTNGP10.phx.gbl...
> Hi all,
>=20
> I would like to create a site which shows text in English or in =
Russian
> (depending on the user's choice).
> Problem is that I can't save the pages in Unicode (Unicode can contain
> Russian characters), because IIS can't handle Unicode ASP pages =
(correct,
> right?!).
>=20
> So how can I have normal (ASCII) ASP pages, which can show either text =
in
> English or Russian (charset Windows-1251)???
>=20
> Thanks!
> Greetings, Steven
>=20
>
| |
| Paul Gorodyansky 2004-06-28, 8:55 am |
| "Steven" <steven@nomailaddresshere.com> wrote in message news:<uHUIbx2VEHA.1764@TK2MSFTNGP10.phx.gbl>...
> Hi all,
>
> I would like to create a site which shows text in English or in Russian
> (depending on the user's choice).
> Problem is that I can't save the pages in Unicode (Unicode can contain
> Russian characters), because IIS can't handle Unicode ASP pages (correct,
> right?!).
>
> So how can I have normal (ASCII) ASP pages, which can show either text in
> English or Russian (charset Windows-1251)???
>
> Thanks!
> Greetings, Steven
You may want to read this page regarding ASP and encodings:
http://msdn.microsoft.com/msdnmag/issues/0700/localize/
--
Regards,
Paul Gorodyansky
"Cyrillic (Russian): instructions for Windows and Internet":
http://RusWin.net
Russian On-screen Keyboard: http://Kbd.RusWin.net
|
|
|
|
|