<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
Hello,
<br> I download Mozilla , but It cannot display
xml file as I have wished.
<br> For example :the xml and xsl file like this:
<br> XML source:
<br> <?xml version="1.0"?>
<br> <?xml-stylesheet type="text/xsl" href="result.xsl"?>
<br> <xslTutorial >
<br> <employee>
<br> <firstName>Joe</firstName>
<br> <surname>Smith</surname>
<br> </employee>
<br> </xslTutorial>
<p>result.xsl:
<br> <xsl:stylesheet xmlns:xsl='<A HREF="http://www.w3.org/XSL/Transform/1.0">http://www.w3.org/XSL/Transform/1.0</A>'>
<br> <xsl:template match="firstName|surname">
<br> <DIV><xsl:text> [template: </xsl:text>
<br> <xsl:value-of select="name()"/>
<br> <xsl:text> outputs </xsl:text>
<br> <xsl:apply-templates/ >
<br> <xsl:text> ]</xsl:text> </DIV>
<br> </xsl:template>
<br> </xsl:stylesheet>
<p>It doesn't display like :
<br> [template: firstName outputs Joe]
<br> [template: surname outputsSmith ]
<br>instead this:
<br>
John Smith.
<p>What's wrong.
<p><b><i><u>FURTHERMORE</u></i></b>
<br> Is there any other browser
in Unix?(I have got IE5.0 in Windows,and it's ok!)</html>