How to use 2 xslt file to transform one xml dom object

hello group.

I am working on xml, xslt transformation for netscape browser. Actually the code works to internet explorer. But for netscape i am using xslt processor. in the meanwhile i need to use two xslt files for transformation. But if i use two transformation i am not geting either errors or a required output. So please clear my doubt if anyone know about this.

note:: my code is working if i use only one xslt file is used for transformation . but if i use 2 xslts .

please do give me some links if you have gone through any.

thanks in advance
with regards

Hi,

  In my current project, I'm using 4 xsl for the transformation. All the XSLs should be included first before any thing is done. This is how I have done.
<?xml version='1.0'?>

<xsl:stylesheet version=“1.0” xmlns:xsl=“XSLT Namespace” xmlns:msxsl=“urn:schemas-microsoft-com:xslt” >

<xsl:include href=“HelperTemplates.xsl”/>
<xsl:include href=“BranchTable.xsl”/>
<xsl:include href=“RegionTable.xsl”/>

regards
PV