xsl-list
[Top] [All Lists]

RE: [xsl] Xsl:variable content should be empty

2007-04-04 03:04:04
Ah, now I understand!  Many thanks Ronan, and also Abel for further
explanation and helpful examples.

Regards

Alan





This line:
<xsl:variable name="link" select="file_link"> </xsl:variable> 
specifies the value of the variable twice - as the result of 
evaluating 'file_link', and as " " (the contents of the 
variable element).

You probably want to use:
<xsl:variable name="link" select="file_link" />
and to read up on xsl:variable in the XSL specification.

      # r


-- 
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.5.446 / Virus Database: 268.18.25/745 - Release Date:
03/04/2007 12:48
 


--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--