<?xml-stylesheet href="preload.xsl" .....?> <?xml-stylesheet href="NULL" type="aplication/...." ?> <?xml-stylesheet href="sidemenu.xsl" .....?> <?xml-stylesheet href="footer.xsl" .....?> <?xml-stylesheet href="maincontent.xsl" .....?>
Obviously, the first three PIs work but the following rely on the root element which gets lost after sidemenu.xsl transformation. Hence, I can't access the data dynamically.
Add the following to your xsl
<xsl:template match="*">
<xsl:copy>
<xsl:copy-of select="@*"/>
<xsl:apply-templates/>
</xsl:copy>
</xsl:template>It should pass through all node it doesn't interact with unchanged.
Mike.
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
