This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: how to change xml ENCODING dynamicly



----- Original Message -----
From: "dragon" <dragon@chinaren-inc.com>
To: <xsl-list@lists.mulberrytech.com>
Sent: Wednesday, March 27, 2002 7:01 AM
Subject: [xsl] how to change xml ENCODING dynamicly


>
> hello every body:
>
> I have a xml,just like:
>
> <?xml version="1.0" encoding="gb2312"?>
> <root>
>   <a>abc </a>
> <b>ddd</b>
> <c>cccc</c>
> </root>
>
> and in the client,I use a xsl  and html to let users change the xml's
> data. and then I need submit to a jsp file. but,when I saved, the xml
> is lost something! It lost's  encoding info.... just like this:
>



to be pedantic

u can't change xml encoding dynamically in the sense that based on a
condition choose either/or encoding... ( ok there are some funky ways of
doing this if the transform is being handled via scripting, though its a
pipeline in any case )

more likely u want

to use <xsl:output/> statement, u can set the encoding attribute of output
there.


hth, jim fuller

> <?xml version="1.0"?>
> <root>
>   <a>abc </a>
> <b>ddd</b>
> <c>cccc</c>
> </root>
> what should I do before I submit it?
> Can anybody tell me? thank u a lot!!
>
>
>  XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
>
>
>  XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
>


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]