OK, I am rather new to XML, but I have very extensive knowledge of CSS, HTML, CF, etc...IOW, new to XML, not the environment. Just clarifying
I am working on a very simple sheet that will display static info, and for some reason I can't get it to work correctly. Would someone please tell me if it's ME or the lack of support in IE 5.5 or what. Thank you very much!!!
______________________style.xsl___________________
<xsl:stylesheet version="1.0"
xmlns:xsl=" xmlns:html='
<xsl:template match="/">
<html>
<body>
<xsl:apply-templates/>
</body>
</html>
</xsl:template>
<xsl:template match="Rgallery">
<b class="banner"><xsl:value-of select="Name"/></b>
</xsl:template>
<xsl:template match="Rgallery/Section/Links">
<ul>
<xsl:for-each select="html:a">
<li>
<xsl:apply-templates />
</li>
</xsl:for-each>
</ul>
</xsl:template>
</xsl:stylesheet>
__________________________________________________________
_______________________main.xml_______________________
<?xml: version="1.0"?>
<?xml-stylesheet type="text/xsl" href="style.xsl"?>
<?xml-stylesheet type="text/css" href="style.css"?>
<Rgallery>
<Name>RGALLERY.COM</Name>
<Section>
<Links xmlns:html=' <html:a href=' Index</html:a>
<html:a href=' <html:a href=' <html:a href=' <html:a href=' <html:a href=' <html:a href=' </Links>
</Section>
</Rgallery>
_______________________________________________________
Thanks so much..I know it's probably a simple answer, but I'm at a loss....
Matt
I am working on a very simple sheet that will display static info, and for some reason I can't get it to work correctly. Would someone please tell me if it's ME or the lack of support in IE 5.5 or what. Thank you very much!!!
______________________style.xsl___________________
<xsl:stylesheet version="1.0"
xmlns:xsl=" xmlns:html='
<xsl:template match="/">
<html>
<body>
<xsl:apply-templates/>
</body>
</html>
</xsl:template>
<xsl:template match="Rgallery">
<b class="banner"><xsl:value-of select="Name"/></b>
</xsl:template>
<xsl:template match="Rgallery/Section/Links">
<ul>
<xsl:for-each select="html:a">
<li>
<xsl:apply-templates />
</li>
</xsl:for-each>
</ul>
</xsl:template>
</xsl:stylesheet>
__________________________________________________________
_______________________main.xml_______________________
<?xml: version="1.0"?>
<?xml-stylesheet type="text/xsl" href="style.xsl"?>
<?xml-stylesheet type="text/css" href="style.css"?>
<Rgallery>
<Name>RGALLERY.COM</Name>
<Section>
<Links xmlns:html=' <html:a href=' Index</html:a>
<html:a href=' <html:a href=' <html:a href=' <html:a href=' <html:a href=' <html:a href=' </Links>
</Section>
</Rgallery>
_______________________________________________________
Thanks so much..I know it's probably a simple answer, but I'm at a loss....
Matt