Netscape and XML/XSLT

wxdqz

New Member
I can use the simple example below to display fine in IE5 but can any giveme an example of using Netscape 6 to produce similiar output?<pre><?xml version="1.0"><library><book><title>Grapes of Wrath</title><author>John Steinbeck</author></book><book><title>Stranger in a strange land</title><author>Robert Heinlein</author></book></library><?xml version="1.0"?><xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"><xsl:template match="book"><xsl:value-of select="title"/><br/></xsl:template></xsl:stylesheet></pre>
 
Back
Top