Link to home
Start Free TrialLog in
Avatar of Mike Eghtebas
Mike EghtebasFlag for United States of America

asked on

asp.net, html validation error

With some good help from the experts, I have corrected all the validation errors except the one below.

Question: How can I correct this?

Thank you.
MasterPageChart9.master (1)
Error Line 1, Column 2: name expected
<%@ Master Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup=…
----------------------

Default.aspx (1)
Error Line 1, Column 2: name expected
<%@ Page Language="C#" AutoEventWireup="true" MasterPageFile="~/MasterPage.mas…
-------------------

Open in new window

<%@ Master Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="MasterPageChart9.master.cs" Inherits="MasterPageChart9" %>

<%@ Page Language="C#" AutoEventWireup="true" MasterPageFile="~/MasterPage.master" CodeFile="Default.aspx.cs" Inherits="_Default" %>

Open in new window

Avatar of Gary
Gary
Flag of Ireland image

Make sure you page is named with an .aspx extension

Are you loading the page through the server e.g.
http://localhost/mypage.aspx
Avatar of Mike Eghtebas

ASKER

I have included two files in my post:

- MasterPageChart9.master     <-- I need to have this as .master
- Default.aspx             <-- although this one has .aspx, but still gives error

Could there be another reason for this error?

Mike
Are you loading it as above? What url do you have in the browser?
the url is http://validator.w3.org/check

and I use Validate by File Upload option.
ASKER CERTIFIED SOLUTION
Avatar of Gary
Gary
Flag of Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Thank you.