Reputation: 646
I am validing the default.aspx(uses master page) of my web site, however; I am unable to get it to pass validation because of the The information that comes before the
<%@ 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">
Validation Output: 3 Errors
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…
Upvotes: 2
Views: 751
Reputation: 1840
You should validate the resulting HTML, not the ASPX code.
If you want a fast and easy solution, use a browser to show the code and validate that.
Upvotes: 3