I have some xslt that uses a c# function to get a string, im calling it like this:
<xsl:value-of select="myClass:GetContent('key')" />
it works fine.
but i now need to use it part of a url.
<a href="{concat('/',select='myClass:GetContent('key')','/mysite.com')}">
i cant get it working... any ideas what to do? thanks