I currently have the following code in an XSL file which lists a the countries from an XML file:
All I want to do is create a link to a file the same name as the country when clicking on the country name. I am new to XSL files and am sure this can't be hard but I can't find any example of it. Thanks!!
Code:
<table align="center" cellpadding="5" border="1" >
<xsl:for-each select="file/record">
<tr>
<td>
<xsl:value-of select="country" />
</td>
</tr>
</xsl:for-each>
</table>