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: link in XSL


It's results in more code, but you could use xsl:attribute:

<p><a>
	<xsl:attribute name="href">
		<xsl:value-of select="webmeeting/lien" />
	</xsl:attribute>
	Back
</a></p>

-----Original Message-----
From: shantanu [mailto:shantanu@india.triviumsys.com]
Sent: Tuesday, January 30, 2001 11:06 PM
To: xsl-list@lists.mulberrytech.com
Subject: RE: [xsl] link in XSL


do this:
<xsl:variable name="hrefval" select="webmeeting/lien" />
<p><a href="{$hrefval}">Back</a></p>

-----Original Message-----
From: owner-xsl-list@lists.mulberrytech.com
[mailto:owner-xsl-list@lists.mulberrytech.com]On Behalf Of Stéphanie
Louis
Sent: Monday, January 29, 2001 7:45 PM
To: XSL List
Subject: [xsl] link in XSL


Hello

I'd like to create an hyperlink in my XSL file with a value of my XML
file. Like this:
<p><a href="<xsl:value-of select="webmeeting/lien" />">Back</a></p>

it doesn't work. How could i do that ???

Thanks
Stef


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



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

 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]