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: building a link...


If you have in XML file:
<book title="XML">

And You want to get a link:
<a href='books.asp?b=XML'>XML</a>


So, MSXML builds a link like following:
<xsl:element name="A">
   <xsl:attribute name="HREF">book.asp?b=<xsl:value-of   
select="@title"/></xsl:attribute>
   <xsl:value-of select="@title"/>
</xsl:element>


________________________________________________________________________
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com


 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]