|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Getting MSIE5b2 "Using XSL to Generate XML" tutorial to work
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
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








