473,385 Members | 1,934 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

w3c compliant code..


hi,

I'm trying to validate this url..
http://www.francesdelrio.com/resume/

I don't quite these errors:

http://validator.w3.org/check?uri=ht...Inline&group=0
Line 1, Column 114: character "/" invalid: only delimiter ">", delimiter
"[", "CDATA", "NDATA", "SDATA" and parameter separators allowed.

…g/TR/xhtml1/DTD/xhtml1-frameset.dtd" />

and what is wrong with a tag like this?
<frameset rows="180,*" frameborder="0" framespacing="0" border="0"
onLoad="loc();" />

or a tag like this?
<frame name="topfr" SRC="top.html" marginwidth="0" marginheight="0"
scrolling="auto" frameborder="0" />

what's wrong with 'src' attribute????

I don't get this?? are FRAMES no longer w3c-compliant????
thank you...

Nov 11 '08 #1
5 2546
maya wrote:
>I'm trying to validate this url..
http://www.francesdelrio.com/resume/
So why do you use the Subject line "w3c compliant code" then?
I don't quite these errors:
You now have _different_ errors. You seem to have changed the document.

Have you considered using a _correct_ doctype declaration, as copied from
W3C specs?
and what is wrong with a tag like this?
<frameset rows="180,*" frameborder="0" framespacing="0" border="0"
onLoad="loc();" />
Frames are evil. Using XHTML for them to the bogosity.
or a tag like this?
<frame name="topfr" SRC="top.html" marginwidth="0" marginheight="0"
scrolling="auto" frameborder="0" />
Inline frames are inline evil.
I don't get this?? are FRAMES no longer w3c-compliant????
They never really were. From the beginning, they have been deprecated. But
this has nothing to do with validation. You get validation errors because
your markup is invalid. You haven't even got the doctype declaration right.

--
Yucca, http://www.cs.tut.fi/~jkorpela/

Nov 11 '08 #2
Jukka K. Korpela wrote:
maya wrote:
>I'm trying to validate this url..
http://www.francesdelrio.com/resume/

So why do you use the Subject line "w3c compliant code" then?
>I don't quite these errors:

You now have _different_ errors. You seem to have changed the document.

Have you considered using a _correct_ doctype declaration, as copied
from W3C specs?
>and what is wrong with a tag like this?
<frameset rows="180,*" frameborder="0" framespacing="0" border="0"
onLoad="loc();" />

Frames are evil. Using XHTML for them to the bogosity.
>or a tag like this?
<frame name="topfr" SRC="top.html" marginwidth="0" marginheight="0"
scrolling="auto" frameborder="0" />

Inline frames are inline evil.
>I don't get this?? are FRAMES no longer w3c-compliant????

They never really were. From the beginning, they have been deprecated.
But this has nothing to do with validation. You get validation errors
because your markup is invalid. You haven't even got the doctype
declaration right.
ok, fine, will give up on that one, then... am trying to w3c-check this
url:
http://www.francesdelrio.com/photoblog/
what can be wrong w/this line?

Line 5270, Column 75: general entity "page" not defined and no default
entity.
…toblog/feedback.jsp?section=section1&page=page1" class="main
sectionsLinks">

are urls with query-strings not w3c-compliant????

thank you...

Nov 11 '08 #3
On 2008-11-11, maya wrote:
am trying to w3c-check this
url:
http://www.francesdelrio.com/photoblog/

what can be wrong w/this line?

Line 5270, Column 75: general entity "page" not defined and no default
entity.
…toblog/feedback.jsp?section=section1&page=page1" class="main
sectionsLinks">

are urls with query-strings not w3c-compliant????
The ampersand needs to be converted to a character entity, &amp;

<a href="/photoblog/feedback.jsp?section=section1&amp;page=page1"

--
Chris F.A. Johnson <http://cfaj.freeshell.org>
================================================== =================
Author:
Shell Scripting Recipes: A Problem-Solution Approach (2005, Apress)
Nov 11 '08 #4
Chris F.A. Johnson wrote:
On 2008-11-11, maya wrote:
> am trying to w3c-check this
url:
http://www.francesdelrio.com/photoblog/

what can be wrong w/this line?

Line 5270, Column 75: general entity "page" not defined and no default
entity.
…toblog/feedback.jsp?section=section1&page=page1" class="main
sectionsLinks">

are urls with query-strings not w3c-compliant????

The ampersand needs to be converted to a character entity, &amp;

<a href="/photoblog/feedback.jsp?section=section1&amp;page=page1"
oh wow.. had no idea.. thank you very much....


Nov 11 '08 #5
Chris F.A. Johnson wrote:
The ampersand needs to be converted to a character entity, &amp;
Or replaced with a semicolon, if your script is able to parse it that way.
Nov 12 '08 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
by: Edward Diener | last post by:
Does anyone know the correct naming conventions for CLS compliant code ? The doc points to a really obscure and difficult to digest document on the web about Unicode names, and I am looking for...
2
by: pnp | last post by:
I tried to add an accessor into a class of an Interface of another class, but the problem is that the compiler displays an error: Type of 'A.B.C.IUsers' is not CLS-compliant What does this...
192
by: Vortex Soft | last post by:
http://www.junglecreatures.com/ Try it and tell me what's happenning in the Microsoft Corporation. Notes: VB, C# are CLS compliant
1
by: Pieter | last post by:
Hi, I have this Warning for several forms when using the DockPanel Suite of Weifen Luo in VS.NET 2005. I read a lot about this CLS-compliant stuff, but I don't now how to chech actually which...
5
by: fm | last post by:
We would like to consider using ASP.NET for our portal development. A requirement is that the pages are 508 compliant. http://www.section508.gov/index.cfm?FuseAction=Content&ID=3 All I have been...
2
by: Rob R. Ainscough | last post by:
When I use the DataSet wizard to create an .xsd I get a "...is not CLS-compliant" warning -- now this is code generated by VS 2005 (aka Microsoft) -- why would it generate none compliant code?? ...
10
by: moondaddy | last post by:
I converted a vb.1.1 web service project to 2.0 and .net 2.0 created / replace some datasets. The code it automatiacly generated gets a warning message as follows: Warning 150 Name...
12
by: nicdude | last post by:
There is a Comeau C++ compiler special offer at http://www.comeaucomputing.com Is it really as compliant as it seems to imply? In terms of Standard C++, what is it missing? Can it handle...
1
by: TS | last post by:
i have this build error that is pointing to a crystal report class. Am i to believe that the company who created this assembly created it un compliant, or is it something in my application/code...
8
by: ramki | last post by:
I need to access COM DLL from Borland C++. I do not know if Borland C++ is COM compliant or not. I know that they were bending over backward to be MFC compliant about 8 to 10 years ago but I do...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.