Hi,
I know I'm a little OT but there seems no other group for it.
So, I am new to XSL/XML and the sample code
shown in a book doesn't seem to work (Error-Msg:
Stylesheet must start either with an 'xsl:stylesheet ' or an
'xsl:transform' element, or with a literal result element that has an
'xsl:version' attribute, where prefix 'xsl' denotes the
'http://www.w3.org/1999/XSL/Transform' namespace.
From Microsoft XML-Editor 2007
where Code is:
<xsl:styleshe et version="1.0"
xmlns:xsl="http ://www.w3c.org/1999/XSL/Transform">
<xsl:output method="html"/>
<xsl:template match="BUCH">
<xsl:for-each select="KAPITEL ">
<H1>
<xsl:value-of select="UEBERSC HRIFT"/>
</H1>
<H3>
<xsl:value-of select="ZWISCHE NUEBERSCHRIFT"/>
</H3>
<P>
<xsl:value-of selct="TEXT"/>
</P>
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>
can anyone help me out?
thanx
M.
I know I'm a little OT but there seems no other group for it.
So, I am new to XSL/XML and the sample code
shown in a book doesn't seem to work (Error-Msg:
Stylesheet must start either with an 'xsl:stylesheet ' or an
'xsl:transform' element, or with a literal result element that has an
'xsl:version' attribute, where prefix 'xsl' denotes the
'http://www.w3.org/1999/XSL/Transform' namespace.
From Microsoft XML-Editor 2007
where Code is:
<xsl:styleshe et version="1.0"
xmlns:xsl="http ://www.w3c.org/1999/XSL/Transform">
<xsl:output method="html"/>
<xsl:template match="BUCH">
<xsl:for-each select="KAPITEL ">
<H1>
<xsl:value-of select="UEBERSC HRIFT"/>
</H1>
<H3>
<xsl:value-of select="ZWISCHE NUEBERSCHRIFT"/>
</H3>
<P>
<xsl:value-of selct="TEXT"/>
</P>
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>
can anyone help me out?
thanx
M.
Comment