Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/asp.net/33.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
asp.net母版页验证w3c学校_Asp.net - Fatal编程技术网

asp.net母版页验证w3c学校

asp.net母版页验证w3c学校,asp.net,Asp.net,但是,我正在验证我的网站的默认.aspx(使用母版页);我无法让它通过验证,因为之前的信息 <%@ Page Title="Home Page" Language="C#" MasterPageFile="~/Site.master" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="EMSWebSite._Default" %> <asp:Content ID="HeaderContent"

但是,我正在验证我的网站的默认.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…

错误行2,第1列:字符“您应该验证生成的HTML,而不是ASPX代码

如果您想要一个快速而简单的解决方案,请使用浏览器显示代码并进行验证