Thanks for your help Helmut.
I haven't find better way to do it !
Cheers,
Simon
Hello Simon
You can use the XSLT translate-function to change to upper-case. (See
example below)
----
<xsl:call-template name="toUpperCase">
<xsl:with-param name="wort" select="name"/>
</xsl:call-template>
----
<!-- ================================= -->
<!-- Translates a String to Upper-Case -->
<!-- ================================= -->
<xsl:template name="toUpperCase">
<xsl:param name="word"/>
<xsl:variable name="small"
select="'abcdefghijklmnopqrstuvwxyz�����'"/>
<xsl:variable name="CAPS" select="'ABCDEFGHIJKLMNOPQRSTUVWXYZ�����'"/>
<xsl:value-of select="translate($word, $small, $CAPS)"/>
</xsl:template>
</xsl:stylesheet>
Greets, Helmut
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]