Subject: Newbie Needs Help
From: "Robert W. Hackenfort" <rhackenfort@xxxxxxxxxx>
Date: Thu, 17 Dec 1998 10:16:57 -0500
|
Just starting out in XML and XSL and tried to do a very simple document.
The XML is:
<?xml version="1.0"?>
<?xml:stylesheet type="text/xsl" href="test.xsl"?>
<greeting>Hello XSL!</greeting>
and the XSL is:
<xsl:stylesheet
xmlns:xsl="http//www.w3.org/TR/WD-xsl"
xmlns:fo="http//www.w3.org/TR/WD-xsl/FO" result-ns="fo">
<xsl:template match= "greeting">
<fo:block color="red" font-size="16pt">
<process-children/>
</fo:block>
</xsl:template>
</xsl:stylesheet>
So I open the greeting.xml in IE Beta2 and I get a blank screen. I
randomly
change something in either document to generate an error message, so I
know the
browser sees the XML and is "gluing" it to the XSL. Why am I getting a
blank
screen?
Thanks in advance for any help.
-Robert
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|