I would like to know how to create a xml stylesheet that can take 3 xml documents and transform it into one.
using one xslt for 3 xml documents
Collapse
X
-
I don't think you can import one XML into another.
But you can read XML from xslt
and read it for example like thatCode:<xsl:variable name="xmlfile" select="document('xmlfile.xml')/rootElement"/>
You can of course read more than one XML file.Code:<xsl:value-of select="$xmlfile/rootElement/childElement"/> </Price>
Comment
Comment