Hi I am trying to import multiple xsl files from a specific folder to an xsl file, is there a way to import all the files in the folder with single tag?
like inporting folder or so..
Thanks
haranadh
Hi I am trying to import multiple xsl files from a specific folder to
Share
It’s not possible in a single
importstatement. Thehrefmust be a constant uri-reference. See the specification (same in XSLT 2.0).If you wanted to get creative, since a stylesheet is just an XML document, you could generate a transform with the necessary import statements, and import that stylesheet when needed with a single reference.