Hi,
I have been trying to validate an xhtml 1.0
transitional page with the W3C Markup Validater.
After making all corrections and validating the
css, the validater still says the page is not
valid but it returns no errors.
The WDG validater returns the following.
I don't understand what this means.
* Line 116, character 8:
</html>
^
Error: entity end not allowed in processing
instruction
* Line 116, character 8:
</html>
^
Error: end of document in prolog
thanks
pcoch 4 9416
ØvêrÇloçkër <pc******@netscape.net> wrote: Hi,
Hi. We need a URL.
On Wed, 05 Jan 2005 20:25:57 -0500, ØvêrÇloçkër wrote: I don't understand what this means.
* Line 116, character 8:
</html> ^
Error: entity end not allowed in processing instruction
It means that the validator's parser reached end-of-file while still
accumulating the content of a processing instruction.
* Line 116, character 8:
</html> ^
Error: end of document in prolog
The "prolog" is everything (such as the doctype declaration) that comes
before the first starttag (in this case, "<html>").
Somewhere towards the beginning of the file, you have started a
processing instruction with the sequence "<?", *without* ending it with
the sequence "?>".
My guess is that you have a malformed xml declaration.
thanks pcoch
I think you may be on to something there.. the xml
is...
<?xml version="1.0">
Arjun Ray wrote: On Wed, 05 Jan 2005 20:25:57 -0500, ØvêrÇloçkër wrote: I don't understand what this means.
* Line 116, character 8:
</html> ^
Error: entity end not allowed in processing instruction It means that the validator's parser reached end-of-file while still accumulating the content of a processing instruction. * Line 116, character 8:
</html> ^
Error: end of document in prolog The "prolog" is everything (such as the doctype declaration) that comes before the first starttag (in this case, "<html>"). Somewhere towards the beginning of the file, you have started a processing instruction with the sequence "<?", *without* ending it with the sequence "?>". My guess is that you have a malformed xml declaration. thanks pcoch
The xml declaration was the problem.
corrected to...
<?xml version="1.0"?>
Page validated.
thank you so much.
btw, the page is...
serena.homedns.org/xhtml1.0.html
Arjun Ray wrote: On Wed, 05 Jan 2005 20:25:57 -0500, ØvêrÇloçkër wrote: I don't understand what this means.
* Line 116, character 8:
</html> ^
Error: entity end not allowed in processing instruction It means that the validator's parser reached end-of-file while still accumulating the content of a processing instruction. * Line 116, character 8:
</html> ^
Error: end of document in prolog The "prolog" is everything (such as the doctype declaration) that comes before the first starttag (in this case, "<html>"). Somewhere towards the beginning of the file, you have started a processing instruction with the sequence "<?", *without* ending it with the sequence "?>". My guess is that you have a malformed xml declaration. thanks pcoch This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
by: Guy Hocking |
last post by:
Hi there,
First of all my apologies for seeming nieve and perhaps ignorant, i am new
to ASP so forgive me.
The Problem -
I have an ASP page that has a number of list boxes in a form. These...
|
by: cliff |
last post by:
I am in the process of developing an application and would like to hide the
query strings in the URLs. I want to POST data to a page then validate the
data. If there is an error I have to send data...
|
by: Jacquie |
last post by:
hello- I am hoping someone can help me solve this mystery. My pages
always say Done with error on page on the bottom. They appear fine on
my computer but other people can't all see it on their...
|
by: Glenn Alcott |
last post by:
On a page I am working on which has three graphic buttons, there is a small
line between two of the buttons which links to the same page as one of the
buttons. I have no idea how this line got in...
|
by: Tiësto |
last post by:
Does it represent an error? I couldn't get to work 2 of them, I and thought
maybe it isn't possible, and the two server validation functions must be put
together.
|
by: Greg Krzeszkowski |
last post by:
Hi,
This might be a little odd but I need to implement a back/"return to
previous page" function from different pages within my asp.net
application. The page the back button on has a property...
|
by: scottyman |
last post by:
I can't make this script work properly. I've gone as far as I can with
it and the rest is out of my ability. I can do some html editing but
I'm lost in the Java world. The script at the bottom of...
|
by: ashkaan57 |
last post by:
The web site is in two languages, one in English and the other in Farsi
(Persian) which is a right-to-left language. So, I used two
stylesheets, with the same info, and changed the right and left...
|
by: Baron Samedi |
last post by:
My whole site is PHP. That means that there are various includes which
make up each page so that I can have standard headers/footers/menu, etc
If the content of one of these changes, it might break...
|
by: Mushico |
last post by:
How to calculate date of retirement from date of birth
|
by: isladogs |
last post by:
The next Access Europe meeting will be on Wednesday 4 Oct 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM)
The start time is equivalent to 19:00 (7PM) in Central...
|
by: Aliciasmith |
last post by:
In an age dominated by smartphones, having a mobile app for your business is no longer an option; it's a necessity. Whether you're a startup or an established enterprise, finding the right mobile app...
|
by: giovanniandrean |
last post by:
The energy model is structured as follows and uses excel sheets to give input data:
1-Utility.py contains all the functions needed to calculate the variables and other minor things (mentions...
|
by: NeoPa |
last post by:
Hello everyone.
I find myself stuck trying to find the VBA way to get Access to create a PDF of the currently-selected (and open) object (Form or Report).
I know it can be done by selecting :...
|
by: Teri B |
last post by:
Hi, I have created a sub-form Roles. In my course form the user selects the roles assigned to the course.
0ne-to-many. One course many roles.
Then I created a report based on the Course form and...
|
by: nia12 |
last post by:
Hi there,
I am very new to Access so apologies if any of this is obvious/not clear.
I am creating a data collection tool for health care employees to complete. It consists of a number of...
|
by: NeoPa |
last post by:
Introduction
For this article I'll be focusing on the Report (clsReport) class. This simply handles making the calling Form invisible until all of the Reports opened by it have been closed, when it...
|
by: isladogs |
last post by:
The next online meeting of the Access Europe User Group will be on Wednesday 6 Dec 2023 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM).
In this month's session, Mike...
| |