Hallo, bin ein absoluter Anfänger. Habe hier ein Buch, hab alles abgetippt aber es funzt nicht. Das is doch ....
Weiß jemand woran das liegt ?
Will ne HTML-Seite erstellen.
xml-datei:
<?xml version="1.0"?>
<?xml-stylesheet href="style.xsl" type="text/xsl"?>
<page>
<title>Testseite</title>
<content>
<paragraph>jhkjkj</paragraph>
</content>
</page>
die xsl-datei:
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="page">
<html>
<head>
<title>
<xsl:value-of select="title"/>
</title>
</head>
<body bgcolor="#cc0000">
<xsl:apply-templates/>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
das stand so im buch aber der brwser gibt aus:
Error loading stylesheet: Parsing a XSLT stylesheet failed.
thx im Voraus
Weiß jemand woran das liegt ?
Will ne HTML-Seite erstellen.
xml-datei:
<?xml version="1.0"?>
<?xml-stylesheet href="style.xsl" type="text/xsl"?>
<page>
<title>Testseite</title>
<content>
<paragraph>jhkjkj</paragraph>
</content>
</page>
die xsl-datei:
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="page">
<html>
<head>
<title>
<xsl:value-of select="title"/>
</title>
</head>
<body bgcolor="#cc0000">
<xsl:apply-templates/>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
das stand so im buch aber der brwser gibt aus:
Error loading stylesheet: Parsing a XSLT stylesheet failed.
thx im Voraus