I have the following code in an XSLT style sheet. A number of occurrences
can be found of the node <bpr> so I need to know which hyperlink was clicked
from the table. The identifier would be the name tag which is a child of the
<bpr> tag. How can I assign the value of node name to the anchor tag of
html.
<xsl:for-each select="//bpr">
        <tr>
        <a href="javascript:loadFrame('Control',
'bpr_control.htm','Error','bpr_error.htm')" name=<xsl:value-of
select="name"/> >
                <td><font color="blue"><xsl:value-of
select="name"/></font></td></a>
                <td><xsl:value-of select="command"/></td>
                <td><xsl:value-of select="pid"/></td>
        </tr>
</xsl:for-each>
I have tried with xsl:variable but it used the variable name literally
instead of the contents of the variable. The name is a string.
Regards
Frank
 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list