posted 19 years ago
I want to use XSLT to format xml, follows with my xml file and xsl file
XML
...
<root>
<user>
<user_id>27</user_id>
<name>John</name>
</user>
......
</root>
XSL file
<xsl:template match="/">
<xsl:for-each select="root/user">
<tr>
<td><a href=" put code here "><xsl:value-of select="Title"/></a></td>.....Line (4)
<td><xsl:value-of select="name"/></td>
</tr>
</xsl:for-each>
</xsl:template>
In line 4 of xsl file , I want to put value of <xsl:value-of select="user_id"/> into html link, just href="<xsl:value-of select="user_id"/>"
I tried several methods to do it, anyone didn't work successfully.
How to put the value into href attribute within tag a???
Please help ....
Thanks in advance.