I have xsl that looks like this:
<a>
<xsl:attribute name="href">my.jsp?uk=<xsl:value-of select="./uk" />&un=<xsl:value-of select="./un" /></xsl:attribute>
<xsl:value-of select="./un" />
</a>
Is there any way in xsl to escape the values of uk and un? i.e replace spaces with '+' and '+' with %2B
