Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2014
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. <?xml version='1.0'?>
  2. <xsl:stylesheet version="2.0"
  3. xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  4. xmlns:xs="http://www.w3.org/2001/XMLSchema">
  5. <xsl:output method="html" omit-xml-declaration="yes" indent="yes"/>
  6.  
  7. <xsl:template match="node()|@*" mode="inFile">
  8. <xsl:copy>
  9. <xsl:apply-templates mode="inFile" select="node()|@*"/>
  10. </xsl:copy>
  11. </xsl:template>
  12.  
  13. <xsl:template match="/">
  14. <xsl:apply-templates mode="inFile" select=
  15. "collection('file:///C:/temp?select=*_Results.xml;recurse=yes')"/>
  16.  
  17. <xsl:apply-templates select="@* | node() " />
  18. </xsl:template>
  19.  
  20. </xsl:stylesheet>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement