RE: [xsl] HTML link dynamically for specified file

Subject: RE: [xsl] HTML link dynamically for specified file
From: Jarno.Elovirta@xxxxxxxxx
Date: Tue, 31 Jul 2001 11:53:08 +0300
> 		<xsl:variable name="tif" select="col/@physname"/>
> 			<a href="$tif">  <!-- here the error 
> takes place -->

Do

  <a href="{$tif}">

or simply

  <a href="{col/@physname}">

See http://www.w3.org/TR/xslt#attribute-value-templates for more info.

Jarno

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


Current Thread