Subject: Re: concat with <A HREF=
From: Larry_Mason@xxxxxx
Date: Thu, 6 Apr 2000 09:02:26 -0500
|
Have you tried the following? Or is the problem with the actual concating?
Larry
<A>
<xsl:attribute name="href">
<xsl:value-of select="$MEMBER-ID"/>
</xsl:attribute>
<xsl:apply-templates select="memberId"/>
</A>
"Peter Friedland" <friedland@xxxxxxxx>@mulberrytech.com on 04/06/2000
08:37:43 AM
Please respond to xsl-list@xxxxxxxxxxxxxxxx
Sent by: owner-xsl-list@xxxxxxxxxxxxxxxx
To: <xsl-list@xxxxxxxxxxxxxxxx>
cc:
Subject: concat with <A HREF=
I'm trying, unsuccessfully, to take the value of an element, concat it
with something else and use the results in the HREF attribute of an <A>
tag.? Can anyone help?
<?xml version="1.0" encoding="UTF-8" ?>
<members>
<ccmscore.Member>
<memberId>12345678</memberId>
</ccmscore.Member>
</members>
...
<xsl:template match="ccmscore.Member" mode="DETAILS">
<TR>
<xsl:variable name="MEMBER-ID-RAW"><xsl:apply-templates select
="memberId"/></xsl:variable>
<xsl:variable name="LEFT-ANCHOR">view_member.jsp?memberId=</xsl:variable>
<xsl:variable name="MEMBER-ID"
? select="concat($LEFT-ANCHOR, $MEMBER-ID-RAW)"/>
<TD NOWRAP="TRUE"><A HREF='$MEMBER-ID'><xsl:apply-templates select
="memberId"/></A></TD>
</TR>
...
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|