Hi,
through xslt i'm creating a combo-box, for navigating the ouput html-file. The user chooses a value, clicks the button and jumps to the anchor. Everything works fine, until the value includes an "ß"
Any ideas? Thanx in advance, Daniel
Combobox:
<xsl:element name="option">
<xsl:attribute name="value">
<xsl:text>#</xsl:text><xsl:value-of select="."/></xsl:attribute>
<xsl:value-of select="."/>
HTML-Output: #Großbritannien
Anchor:
<a>
<xsl:attribute name="name">
<xsl:value-of select="./text()"/>
</xsl:attribute>
<xsl:attribute name="class">Modellstyle</xsl:attribute>
<xsl:value-of select="./text()"/>
</a>
HTML-Output: #Gro%C3%9Fbritannien
---------------------------------------
Visit me @:
through xslt i'm creating a combo-box, for navigating the ouput html-file. The user chooses a value, clicks the button and jumps to the anchor. Everything works fine, until the value includes an "ß"
Any ideas? Thanx in advance, Daniel
Combobox:
<xsl:element name="option">
<xsl:attribute name="value">
<xsl:text>#</xsl:text><xsl:value-of select="."/></xsl:attribute>
<xsl:value-of select="."/>
HTML-Output: #Großbritannien
Anchor:
<a>
<xsl:attribute name="name">
<xsl:value-of select="./text()"/>
</xsl:attribute>
<xsl:attribute name="class">Modellstyle</xsl:attribute>
<xsl:value-of select="./text()"/>
</a>
HTML-Output: #Gro%C3%9Fbritannien
---------------------------------------
Visit me @: