This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: MSXML: How do I build an anchor


Bharat.Chintapally@CommerceQuest.com wrote:
> I have one more quick question.

Quick answer:
http://www.netcrucible.com/xslt/msxml-faq.htm

>         <td><xsl:element name="a">
>         <xsl:attribute name="href">
>                 <xsl:text>
>                 http://TPADEV041:8001/servlet/StatusQuery?report=DocumentDetail&amp;uuid=
>                 </xsl:text>
>                 <xsl:value-of select="@uuid"/>
>         </xsl:attribute>
>         <xsl:value-of select="docId"/>
>         </xsl:element>
>         </td>

<xsl:value-of select="concat('http://TPADEV041:8001/servlet/StatusQuery?report=DocumentDetail&amp;uuid=',@uuid)"/>

might be an easier way to set the attribute value. Still won't work until
you upgrade your MSXML as per the FAQ, though.

   - Mike
____________________________________________________________________
Mike J. Brown, software engineer at         My XML/XSL resources:
webb.net in Denver, Colorado, USA           http://www.skew.org/xml/


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]