为什么代码不能够实现,什么也打印不出来?
<html xmlns="http://www.<head runat="server">
<title>演示颜色属性</title> </head>
<body>
<form id="form1" runat="server">
<div>
<asp:Label ID="Label" Text="蓝色背景,红色前景" BackColor="#000ff#" ForeColor = "#ff0000" runat="Server"/>
</p>
<asp:Label ID="Label2" Text="蓝色背景,红色前景" BackColor = "Blue" ForeColor = "Red" runat="Server" />
</div>
</form>
</body>
</html>