XSLTGeneral questions and answers about XSLT. For issues strictly specific to the book XSLT 1.1 Programmers Reference, please post to that forum instead.
Welcome to the p2p.wrox.com Forums.
You are currently viewing the XSLT section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
Thanks for you help.
Could you please give me an example.Because I received an error when I use a varibale like this.
<xsl:variable name="ordernames">
<xsl:call-template name="test">
</xsl:template>
Thanks..
Hi,
Thanks for your solution.This code is working for 'http://www.w3.org/1999/XSL/Transform' namespace.But I have a xsl file with 'http://www.w3.org/TR/WD-xsl'. It wouldn't allow me create a variable. Also what I am trying to do is to display the variable value 'onmouseover' of the <td>.But it's not working.
Could you please help.
Here is the code:
<tr>
<td><xsl:attribute name="onmouseover"><xsl:value-of select="$fooValues" />
</td>
</tr>