aspose file tools
The moose likes XML and Related Technologies and the fly likes It's boring, XSLT ... Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Engineering » XML and Related Technologies
Reply Bookmark "It Watch "It New topic
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 ]
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: It's boring, XSLT ...
 
Similar Threads
Book Promotion and Past Winners in XSLT
parameter to xsl from java
Create a hardcopy of moelholm.com SCEA mock test
Not getting my variable value
splitting xsl file :creating dynamically