[xsl] Adding a clickable URL to XSL

Subject: [xsl] Adding a clickable URL to XSL
From: Anonymous Anonymous <is668@xxxxxxxxx>
Date: Fri, 6 Nov 2009 06:27:18 -0800 (PST)
How do I make just the URL element below appear as a clickable link? The ... represents omitted HTML formatting.

Thanks,
XML newbie

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 

<xsl:stylesheet version="1.0">
<xsl:template match="/">
<html>
<body>
<table>...

<xsl:for-each select="s:ResultSet/s:Result">
    <tr>
        <td><xsl:value-of select="s:Title"/></td>
        <td><xsl:value-of select="s:Summary"/></td>
        <td><xsl:value-of select="s:Url"/></td>
    </tr>
</xsl:for-each>

...</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>

Current Thread