I have some XML data that include a URI. I want to list the URIs on an ASP page, but also make them accessible with <a> tags. However, XSLT does not allow you to embed an XSL command in a tag, for example:
<xsl:for-each select="//uri"> <tr> <td class="tdDetail"> More information </td> <td> <a href="<xsl:value-of select="." />" alt="More information" target=_blank><xsl:value-of select="." /></a> </td> </tr> </xsl:for-each>
How do I include the url in the <uri> after the code <a href=" ?
xml xslt
Nickm
source share