One simple thing seems not to work.
I want to include some variables from an
extra stylesheet into another stylesheet.
The one xsl file may look like that:
'variable.xsl':
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:variable name="var">Something</xsl:variable>
<xsl:variable name="var1">Something</xsl:variable>
</xsl:stylesheet>
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:import href="variable.xsl"/>
<xsl:value-of select="var1"/>
<xsl:value-of select="var2"/>
</xsl:stylesheet>
But it doesn't work. I have to include some variable definitions from
an extern file. How can I include some xsl things into my main xsl file.
xsl:import also didn't work.
Thanx
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
| Current Thread |
- xsl:include
- Partho Paul - Tue, 27 Mar 2001 02:07:03 -0500 (EST) <=
|
|