topical media & game development

talk show tell print

basic-ajax-07-catalogue.xsl / xsl



  <?xml version="1.0" encoding="utf-8"?>
  
  <xsl:stylesheet version="1.0"
      xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  
    <xsl:output 
      method="html" 
      indent="yes" 
      version="4.0" />
    <xsl:param name="ISBN" />
    
    <xsl:template match="/">
        <xsl:for-each select="//book">
          <xsl:if test="ISBN=ISBN">
            <span>
              <b>Title</b> - 
              <xsl:value-of select="Title"/>
            </span>
            <br/>
            <span> <b>Authors</b> - 
              <xsl:value-of select="Authors"/>
            </span>
            <br/>
            <span> <b>ISBN</b> - 
              <xsl:value-of select="ISBN"/>
            </span>
            <br/>
            <span> <b>Price</b> - 
              <xsl:value-of select="Price"/>
            </span>
            <br/>
          </xsl:if>
        </xsl:for-each>
    </xsl:template>
  </xsl:stylesheet>
  
  


(C) Æliens 20/2/2008

You may not copy or print any of this material without explicit permission of the author or the publisher. In case of other copyright issues, contact the author.