Hi,
 
I´ve a question mentioned the performance of the XSL Transformation. I need a XSL Stylesheet which is dynamic against a specific context. So I use a lot of import statements for Stylesheets, but not all Stylesheets are allways used.
 
What happens, if the XSLT Processor worked up the importstatements? Can these steps have a adverse effect for performance?
 
Can someone help me with these question?
 
Thanks a lot,
 
Jan
 

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:import href="headerLogo.xsl"/>

<xsl:import href="bodyI.xsl"/>

<xsl:import href="bodyII.xsl"/>

        ...............

        ...............

<xsl:import href="footerI.xsl"/>

<xsl:import href="footerII.xsl"/>

        ............

        ............

 

 

Reply via email to