I have this XSL file :
<xsl:template match="attribute">
<a href="-">
mylink
</a>
<xsl:value-of select="url" />
I want to put the value of my the url attribute in the href.
Do you know how to do this ?
Because <a href="<xsl:value-of select="url" />">
doesn't work.