写了一个test.xml的样式转换,为什么报错
Required attribute 'version' is missing. <?xml version="1.0"?>
<?xml-stylesheet href="hello.xsl" type="text/xsl"?><page>
<title>Test Page</title>
<content>
<paragraph>What you see is what you get!</paragraph>
</content>
</page><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="#ffffff">
<xsl:apply-templates/>
</body>
</html>
</xsl:template><xsl:template match="paragraph">
<p align="center">
<i>
<xsl:apply-templates/>
</i>
</p>
</xsl:template>
</xsl:stylesheet>