home *** CD-ROM | disk | FTP | other *** search
/ Programmer Plus 2007 / Programmer-Plus-2007.iso / Programming / XML Utilities / Professional Programmer XSL IDE / Xselerator25.msi / Data.Cab / F44742_xsAvoidCrash.xsl < prev    next >
Encoding:
Extensible Markup Language  |  2001-07-17  |  569 b   |  25 lines

  1. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  2.   <xsl:output indent="yes" omit-xml-declaration="yes" />
  3.   
  4.   <xsl:template match="/">
  5.     <html>
  6.      <xsl:apply-templates/>
  7.     </html>
  8.   </xsl:template>
  9.  
  10.   <xsl:template match="Tag">
  11.     <xsl:variable name="vValue" select="Value" />
  12.  
  13.     <TABLE>
  14.       <TR ID="{@ID}">
  15.         <xsl:for-each select="(document('')//*)[position() <= $vValue]">
  16.           <TD>
  17.           </TD>
  18.         </xsl:for-each>
  19.       </TR>
  20.     </TABLE>
  21.   </xsl:template>
  22. </xsl:stylesheet>
  23.  
  24.  
  25.