Darren Hammond writes:
> This is a style sheet definition that I am using. On the line that reads
> "<TD><xsl:value-of select="email"/></TD>"
> I would like to make the value a Mailto reference. How do I do
this?
<TD>
<a>
<xsl:attribute name="href">
<xsl:text>mailto:</xsl:text><xsl:value-of select="email"/>
</xsl:attribute>
<xsl:value-of select="email"/>
</a>
</TD>
of course, in CSS this would be really really easy, I don't know, makes
me wonder why we bother with XSL, come back Michael Leventhal all is forgiven
Sebastian
PS sorry, I missed out the <ironic> tags
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|