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]

HTML link dynamically for specified file


hi @ all,


i have a problem to set a HTML - link in my xsl file dynamically to a
special file.
i want to get a link to the file, which name i get by <xsl:value-of
select="col/@physname"/>.
i get for example: "123.tif"
this name should be linked to. i tried to initialize a variable by this name
but, i think because the link tag is not xsl, the link does not take the
value of $tif nut it links to "$tif". does anybody knew a solution for
this??



<xsl:choose>
	<xsl:when test="col/@format='TIFF'">
		<xsl:variable name="tif" select="col/@physname"/>
			<a href="$tif">  <!-- here the error takes place -->
				<xsl:value-of select="col/@physname"/>
			</a>&#xA0;
	</xsl:when>
	<xsl:otherwise>
		<xsl:value-of select="col/@physname"/>&#xA0;
	</xsl:otherwise>
</xsl:choose>



thanks for help!!


jan


 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]