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>
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>