| Author |
It's boring, XSLT ...
|
Hongqing Lu
Greenhorn
Joined: Jan 14, 2004
Posts: 13
|
|
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.
|
 |
Ashok Mash
Ranch Hand
Joined: Oct 13, 2000
Posts: 1936
|
|
Try using <xsl:attribute>. An example, <a> <xsl:attribute name="href"><xsl:value-of select="user_id"/></xsl:attribute>The title part</a> Hope this helps!
|
[ flickr ]
|
 |
 |
|
|
subject: It's boring, XSLT ...
|
|
|