Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

xslt, combobox and ß

Status
Not open for further replies.

bateman23

Programmer
Joined
Mar 2, 2001
Messages
145
Location
DE
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 @:
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top