<?xml version="1.0" encoding="windows-1252"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
  <xsl:template match="/">
    <html>
      <head>
        <meta http-equiv="Content-Type" content="text/html; charset=windows-1252" />
        <title>ASP und XML: Serverseitige Transformation einer XML-Datei mit XSL</title>
      </head>
      <body>
        <table border="2">
          <tr>
            <td>Symbol</td>
            <td>Name</td>
            <td>Price</td>
          </tr>
          <xsl:for-each select="portfolio/stock">
            <tr>
              <xsl:attribute name="TITLE"><xsl:value-of select="symbol"/> is listed on the <xsl:value-of select="@exchange"/> stock exchange.</xsl:attribute>
              <td><xsl:value-of select="symbol"/></td>
              <td><xsl:value-of select="name"/></td>
              <td><xsl:value-of select="price"/></td>
            </tr>
          </xsl:for-each>
        </table>
        <hr />
        <p>Zurück zur 
          <a href="http://www.ecotronics.ch/asppages/silvi/showaspbeispiele.asp">
            Liste mit ASP-Beispielen</a> auf 
          <a href="http://www.ecotronics.ch/">
            www.ecotronics.ch
          </a>
        </p>

      </body>
    </html>
  </xsl:template>
</xsl:stylesheet>

