第一次接触,看书本什么概念都没有
在vs.net里面建立一个项目,添加一个
test.xsl项:
代码  如下:
<?xml version="1.0" encoding="UTF-8" ?><stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" indent='yes'  doctype-public='-//w3c//DTD HTML 3.2 Final//EN/> <xsl:template match="/">
<html>
<head>
<title></title>
<meta name="GENERATOR" content="Microsoft Visual Studio .NET 7.1">
<meta name=ProgId content=VisualStudio.HTML>
<meta name=Originator content="Microsoft Visual Studio .NET 7.1">
</head>
<body>Haha</body>
</html>

</xsl:template></stylesheet>我在浏览器输入:
http://127.0.0.1/WebApplication1/test2.xsl

The character '<' cannot be used in an attribute value. Error processing resource 'http://127.0.0.1/WebApplication1/test2.x... <xsl:template match="/">错误,究竟我该怎么做才能实现需要的效果?
具体的步骤是?...