473,396 Members | 1,916 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,396 software developers and data experts.

Page not validating

joe
I've been over this page more times than makes sence, it won't validate yet
the reason it fails is wrong is it the validator thats screwy

http://www.ukmusician.co.uk/index_files/tabs.htm
Jul 24 '05 #1
8 1412
On Sat, 9 Apr 2005 13:04:53 +0000 (UTC), joe <jo*********@nospam.co.uk>
wrote:
I've been over this page more times than makes sence, it won't validate
yet
the reason it fails is wrong is it the validator thats screwy

http://www.ukmusician.co.uk/index_files/tabs.htm


What explicitely is it that the validator tells you
<http://validator.w3.org/check?uri=http%3A%2F%2Fwww.ukmusician.co.uk%2Finde x_files%2Ftabs.htm>
or
<http://www.htmlhelp.com/cgi-bin/validate.cgi?url=http%3A%2F%2Fwww.ukmusician.co.uk %2Findex_files%2Ftabs.htm&warnings=yes>

and that you do not understand?

--
,-- --<--@ -- PretLetters: 'woest wyf', met vele interesses: ----------.
| weblog | http://home.wanadoo.nl/b.de.zoete/_private/weblog.html |
| webontwerp | http://home.wanadoo.nl/b.de.zoete/html/webontwerp.html |
|zweefvliegen | http://home.wanadoo.nl/b.de.zoete/html/vliegen.html |
`-------------------------------------------------- --<--@ ------------'
Jul 24 '05 #2
On Sat, 9 Apr 2005 13:04:53 +0000 (UTC), joe
<jo*********@nospam.co.uk> wrote:
I've been over this page more times than makes sence, it won't validate yet
the reason it fails is wrong is it the validator thats screwy


No, it never is. _Do_ pay attention at the back.

The code is untidy. What's with "<BR />" , the mixed case tag names
and the unquoted attributes? If you're going to start caring about
validation, either be scrupulously consistent with this stuff, or use
an editor with automatic element closure.

As a quick guide to fixing it, Comment out large sections until the
problem goes away, then comment back in smaller sections until you
recreate the problem. Narrow it down that way. Yes, it's boring.
Jul 24 '05 #3
In our last episode,
<Xn*******************@217.32.252.50>,
the lovely and talented joe
broadcast on comp.infosystems.www.authoring.html:
I've been over this page more times than makes sence, it won't validate yet
the reason it fails is wrong is it the validator thats screwy http://www.ukmusician.co.uk/index_files/tabs.htm


1) The underscore in the target attribute means the attribute
must be quoted. Underscore is a legal NAME character, but not
when it is the first character. You should quote all attributes
anyway. It is simply easier to do so than to try to remember
when you can get away without quoting.

2) You have duplicated the close tags around the end of footer
comment.
--
Lars Eighner ei*****@io.com http://www.larseighner.com/
There is no WE in TEAM.
Jul 24 '05 #4
joe wrote:
I've been over this page more times than makes sence, it won't validate yet
the reason it fails is wrong is it the validator thats screwy

http://www.ukmusician.co.uk/index_files/tabs.htm


If you use Firefox, with HTML Validation extension, and set it up to
make changes for HTML Transitional it will validate. Copy and paste the
changed file to your PC and upload it to the W3C Validation Page.
Jul 24 '05 #5
joe
joe <jo*********@nospam.co.uk> wrote in
news:Xn*******************@217.32.252.50:
I've been over this page more times than makes sence, it won't
validate yet the reason it fails is wrong is it the validator thats
screwy

http://www.ukmusician.co.uk/index_files/tabs.htm


done what you said about the "_blank" bit but i still get the same error
as the other bit is actually needed, it says that the TD element is not
open as if it's making the same mistake you did in assuming they were for
closing Footer element when the lines it refers to in fact close the main
body!! is it all the Table element confusing the validator as i have been
over and over this page a ridiculas amount of times now, counting each
element of open or closed tags and everthing is fine as far as i can
tell!
the specifics elements are
Line 207, column 8: end tag for element "TD" which is not open

</TD>
which in fact close the main page <TD> which open on line 73
Line 208, column 6: end tag for element "TR" which is not open

</TR></TBODY>
Line 208, column 14: end tag for element "TBODY" which is not open

</TR></TBODY>
and these are to close the element on line 71 and 72 which are still open
otherwise (if i take them out), so in conclusion i declared the Validator
as screwwy as screwwy squirell after being on a corkscew rollercoaster
for 5 days on LSD!!!
Jul 24 '05 #6
joe wrote:
joe <jo*********@nospam.co.uk> wrote in
news:Xn*******************@217.32.252.50:
is it the validator thats screwy
Not usually.
http://www.ukmusician.co.uk/index_files/tabs.htm


Part of the problem is that you're using XHTML syntax for empty
elements, which actually means something completely different in HTML,
but which is also unsupported in current browsers.

Replace <td/> with <td></td> if you really want an empty cell.
Technically the end-tag is optional, but I recommend you include it anyway.
Replace <br /> with <br>.

--
Lachlan Hunt
http://lachy.id.au/
http://GetFirefox.com/ Rediscover the Web
http://GetThunderbird.com/ Reclaim your Inbox
Jul 24 '05 #7
joe
Lachlan Hunt <sp***********@gmail.com> wrote in
news:42***********************@per-qv1-newsreader-01.iinet.net.au:
joe wrote:
joe <jo*********@nospam.co.uk> wrote in
news:Xn*******************@217.32.252.50:
is it the validator thats screwy
Not usually.
http://www.ukmusician.co.uk/index_files/tabs.htm


Part of the problem is that you're using XHTML syntax for empty
elements, which actually means something completely different in HTML,
but which is also unsupported in current browsers.

Replace <td/> with <td></td> if you really want an empty cell.
Technically the end-tag is optional, but I recommend you include it
anyway. Replace <br /> with <br>.


Damn i had high hopes for that one, did as you said and fixed the about
still the same line 206,207,208 errors???

Jul 24 '05 #8
joe
Lachlan Hunt <sp***********@gmail.com> wrote in
news:42***********************@per-qv1-newsreader-01.iinet.net.au:
joe wrote:
joe <jo*********@nospam.co.uk> wrote in
news:Xn*******************@217.32.252.50:
is it the validator thats screwy
Not usually.
http://www.ukmusician.co.uk/index_files/tabs.htm


Part of the problem is that you're using XHTML syntax for empty
elements, which actually means something completely different in HTML,
but which is also unsupported in current browsers.

Replace <td/> with <td></td> if you really want an empty cell.
Technically the end-tag is optional, but I recommend you include it
anyway. Replace <br /> with <br>.


nm i got it, it was a combination of a couple of things

Jul 24 '05 #9

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

Similar topics

5
by: DeMZed | last post by:
Hi, When validating my web site, I've got the following error : ------------------------------ Line 31, column 26: cannot generate system identifier for general entity "PHPSESSID" <a...
9
by: Mark | last post by:
Hi there On this page i get some errors when validating: http://www.keyone.nl/lab/beeldlijn/nl/collection.asp The problem is caused by the use of ASP in my pages. This is the code: <a...
0
by: Rachel Suddeth | last post by:
I have a tabbed ap, and I want to provide a message and give the user a chance to change there mind if they try to change tab pages in the middle of an update (otherwise just cancel the update and...
6
by: Alex Bink | last post by:
Hi, I have a validating event on a textbox in which I want to prevent the user to leave the textbox without entering the right data. Only if he clicks on another specific control he is allowed...
0
by: Joe | last post by:
Hi For a while now I have been finding postings of problems with the validating event not firing on controls properly. I too had this problem. The event would fire when clicking on another...
2
by: Chris Dunaway | last post by:
I have a form with a textbox and numerous panels, buttons and other controls. I have handled the textbox Validating and Validated events. The textbox will hold a filename. In the validating...
21
by: Darin | last post by:
I have a form w/ a textbox and Cancel button on it. I have a routine to handle textbox.validating, and I have the form setup so the Cancel button is the Cancel button. WHen the user clicks on...
3
by: TheSteph | last post by:
Hi Experts ! I have a Winform Program in C# / .NET 2.0 I would like to ensure that a value in a TextBox is a valid Int32 when user get out of it (TextBox loose focus)
5
by: chadwick | last post by:
Hi everyone - I have a form that contains a TabControl object with 2 tab pages, TabPage1 and TabPage2. TabPage1 contains two text boxes and a cancel button, which closes the form. I would like...
6
by: phpmagesh | last post by:
Hi I am creating login page with validation. i have index.php page with login box, for validating this login detail i m redirecting to login_validate.php. Login_validate.php file code: ...
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...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
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...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

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.