Subject: Re: XML & XSL with IE5
From: Lee Goddard <home@xxxxxxxxxxxxxx>
Date: Thu, 24 Aug 2000 11:15:03 +0100
|
Have you patched IE with the MSXML patch?
>From msdn.microsoft.com follow the link
and instructions.
hth
lee
"Soria, Oscar" wrote:
>
> Hello!
>
> I have an XML file and another one XSL. I haven't achieved to open the
> XML file with Internet Explorer 5 and to see its datas. The XML file
> point to XSL.
>
> The content of the XML is:
>
> <?xml version="1.0" ?>
> <?xml-stylesheet type="text/xsl" href="prueba1.xsl"?>
> <employee id="03432">
> <name>Joe Shmo</name>
> <title>Manager</title>
> </employee>
>
> And of the XSL:
>
> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
> version="1.0">
> <xsl:template match="/">
> <html>
> <body>
> <p>
> <b>
> <xsl:value-of select="employee/name"/>
> </b>
> <xsl:text>: </xsl:text>
> <xsl:value-of select="employee/title"/>
> </p>
> </body>
> </html>
> </xsl:template>
> </xsl:stylesheet>
>
> When I open the XML file and IE5 open it, the result in the explorer is:
>
> :
>
> IE5 don't read the data of the XML file and I don´t know why! I have
> check with anothers XML/XSL and it occurs me the same.
>
> Thank you very much,
>
> Oscar
>
> XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
--
Lee Goddard <l.goddard@sussex>
Research Centre for Cognitive Science,
University of Sussex, Brighton UK
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|