Subject: Re: 𡁀 coming out as ?
From: "Joerg Heinicke" <joerg.heinicke@xxxxxx>
Date: Sat, 9 Mar 2002 00:17:35 +0100
|
> I've got a .xsl file with the following html markup in it:
>
> <td>到</td><td>5/1/02</td>
>
> where 到 is the decimal value of a chinese character. The problem
is
> that when I run the xsl through the transformer (MICROSOFT.XMLDOM), it
> outputs <td>?</td><td>5/1/02</td>. Is this enough information to know
what
> I am doing wrong?
Nothing is wrong with the XSL, only the browser can't display the character.
<![CDATA[到]]> means that all characters will be escaped before the
transformer get's to see it: &#21040;
So this will be placed in the output and shown in the browser as you saw it.
Regards,
Joerg
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|