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: Problems with characters


> From: owner-xsl-list@lists.mulberrytech.com
> [mailto:owner-xsl-list@lists.mulberrytech.com]On Behalf Of Ragulf
> Pickaxe
> Sent: Wednesday, February 20, 2002 11:48 AM
> To: xsl-list@lists.mulberrytech.com
> Subject: Re: [xsl] Problems with characters
>
>
>
> >Ragulf Pickaxe wrote:
> > > Well, actually I do seem to have more problems because I deleted a
> >comment
> > > in the second stylesheet and it suddently worked, showing the right
> > > characters(!).
> >
> >Luck :)
> >
> > > Then I tried oppening a new window, not changing anything,
> and it showed
> >it
> > > wrongly (again).
> >
> >See? :)
>
> Well, I have tested some more, and I think the problem is not
> about data but
> about loading the stylesheet.
>
> All times, when I open a new window, first time it shows it
> wrongly, second
> and subsequent times it shows the characters right.
>
> This is the part of the asp page, that loads and transforms the
> document, I
> note that I have not written anything about
> xml/xsl.async = false. Can this be the problem?

It should be set to false unless you really are prepared to handle
asynchronicity.

> ..
> Set oXml = Server.CreateObject("MSXML2.DOMDocument")
> Set oXsl = Server.CreateObject("MSXML2.DOMDocument")
>
> call oXml.loadXML(vXmlData)
> call oXsl.load(Server.MapPath(".\Stylesheets\File.xsl"))
>
> sData=oXml.transformNode(oXsl)
> Response.Write(sData)

Never do that. You'll loose encoding information.

Use

	oXml.transformNode(oXsl, Response)

instead.

And complain to MSDN about their faulty examples.


 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]