asp.net主页验证w3c学校

时间:2011-11-14 14:35:08

标签: asp.net

然而,我正在使用我的网站的default.aspx(使用母版页)。我无法通过验证,因为之前的信息

<%@ Page Title="Home Page" Language="C#" MasterPageFile="~/Site.master" AutoEventWireup="true"
    CodeBehind="Default.aspx.cs" Inherits="EMSWebSite._Default" %>

<asp:Content ID="HeaderContent" runat="server" ContentPlaceHolderID="HeadContent">
    <link href="Styles/style.css" rel="stylesheet" type="text/css" />
</asp:Content>
<asp:Content ID="BodyContent" runat="server" ContentPlaceHolderID="MainContent">

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

验证输出:3个错误

Error Line 2, Column 1: character "<%" not allowed in prolog

<%@ Page Title="Home Page" Language="C#" MasterPageFile="~/Site.master" AutoEve…

✉
Error Line 8, Column 80: document type does not allow element "asp:Content" here

<asp:Content ID="BodyContent" runat="server" ContentPlaceHolderID="MainContent">

✉

The element named above was found in a context where it is not allowed. This could mean that you have incorrectly nested elements -- such as a "style" element in the "body" section instead of inside "head" -- or two elements that overlap (which is not allowed).

One common cause for this error is the use of XHTML syntax in HTML documents. Due to HTML's rules of implicitly closed elements, this error can create cascading effects. For instance, using XHTML's "self-closing" tags for "meta" and "link" in the "head" section of a HTML document may cause the parser to infer the end of the "head" section and the beginning of the "body" section (where "link" and "meta" are not allowed; hence the reported error).
Error Line 10, Column 3: "DOCTYPE" declaration not allowed in instance

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.o…

1 个答案:

答案 0 :(得分:3)

您应该验证生成的HTML,而不是ASPX代码。

如果您想要快速简便的解决方案,请使用浏览器显示代码并验证。