Getting MSIE5b2 "Using XSL to Generate XML" tutorial to work

Subject: Getting MSIE5b2 "Using XSL to Generate XML" tutorial to work
From: TK <tk@xxxxxxxx>
Date: Thu, 28 Jan 1999 15:43:17 -0500
Has anyone successfully run the Microsoft's XML tutorial lesson 13 (see
http://www.microsoft.com/xml/tutorial/xsl_to_xml.asp  ) "Using XSL to
Generate XML" to work.  I'd appreciate seeing the actually content in the
xml and xsl files or any hints!

I've tried the below and all I get are blank screens and these are examples in 
the tutorial:

---The xml file---

<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="xsl06.xsl" ?>
<investments>
  <item type="stock" symbol="ZCXM" company="zacx corp" price="$18.875"/>
  <item type="stock" symbol="ZFFX" company="zaffymat inc" price="$20.313"/>
  <item type="stock" symbol="ZYSZ" company="zysmergy inc" price="$92.250"/>
</investments>

--- and the xsl file ---

<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl";>
<portfolio>
  <xsl:for-each select="item[@type='stock']">
    <stock>
      <name><xsl:value-of select="@company"/></name>
      <symbol><xsl:value-of select="@symbol"/></symbol>
      <price><xsl:value-of seect="@price"/></price>
    </stock>
  </xsl:for-each>
</portfolio>
</xsl:stylesheet>

Thanks in advance, TK



 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread