i am desperate, problem is so simple but .....
this xsl:xsl:preserve-space tag - why it is not fitting anywhere! i got
"Keyword xsl:preserve-space may not be used here. " from IE
I want to print one attribute with the stylesheet and the attribute has
space in front of it in the xml.
It is printed but without the space.
So, how to print this space, i've done similiar things before but this
preserve-space maked me mad. Anyone remeber where should be placed?
help you A LOT!
<?xml version = "1.0"?>
<!-- This a stylesheet generated by Seeburger XSL Editor -->
<xsl:stylesheet xmlns:xsl = "http://www.w3.org/TR/WD-xsl">
<xsl:preserve-space elements="*"/>
<xsl:template match = "/">
<xsl:apply-templates />
</xsl:template>
<xsl:template match = "EMPLOYEES">
<html>
<body>
<xsl:apply-templates />
</body>
</html>
</xsl:template>
<xsl:template match = "Employee">
</xsl:template>
</xsl:stylesheet>