HighDots Forums  

Please validate this page

Macromedia Dreamweaver Macromedia Dreamweaver Discussions (macromedia.dreamweaver)


Discuss Please validate this page in the Macromedia Dreamweaver forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
Murray *TMM*
 
Posts: n/a

Default Please validate this page - 11-09-2004 , 11:21 AM






Folks:

Please use FF's validation to hit this page -

http://www.oakfurnituremaker.co.uk/test/index.asp

When I do that I get a host of warnings about unencoded "&" characters.
Yet, there are none on this page! Even is there were, what should I do
about them?

In addition, there are two alt tag warnings at the bottom. I can't find the
line #'s that they refer to! 8\

'sup with this?

--
Murray --- ICQ 71997575
Team Macromedia Volunteer for Dreamweaver
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com - Template Triage!
http://www.projectseven.com/go - DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs, Tutorials & Resources
http://www.macromedia.com/support/search/ - Macromedia (MM) Technotes
==================



Reply With Quote
  #2  
Old   
danilocelic
 
Posts: n/a

Default Re: Please validate this page - 11-09-2004 , 11:30 AM






Murray *TMM* wrote:

Quote:
Folks:

Please use FF's validation to hit this page -

http://www.oakfurnituremaker.co.uk/test/index.asp

When I do that I get a host of warnings about unencoded "&" characters.
Yet, there are none on this page! Even is there were, what should I do
about them?
You do have them, take a look at your URL for your links to the product pages:

e.g.:
<a href="c_thumb2.asp?menu=English&range=Contemporary &piece=Chairs">Chairs</a><

notice the & in the query string, change those to &amp; and you'll start to validate. However, it doesn't look like the code you're using server side accomodates that type of usage, it probably splits the query string based upon just the & character itself, so that will need to get addressed *if* you page really needs to validate.


--
Enjoy,
Danilo Celic

Quote:
Extending Knowledge, Daily
http://www.CommunityMX.com/
Those who aren't looking often have their eyes open widest.


Reply With Quote
  #3  
Old   
Murray *TMM*
 
Posts: n/a

Default Re: Please validate this page - 11-09-2004 , 11:34 AM



Oops - here I was thinking ASP code and recordsets. You are absolutely
right.

Quote:
it probably splits the query string based upon just the & character
itself, so that will need to get addressed *if* you page really needs to
validate.
That's correct. How would it be addressed?

--
Murray --- ICQ 71997575
Team Macromedia Volunteer for Dreamweaver
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com - Template Triage!
http://www.projectseven.com/go - DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs, Tutorials & Resources
http://www.macromedia.com/support/search/ - Macromedia (MM) Technotes
==================

"danilocelic" <danilo (AT) shimmerphase (DOT) com> wrote

Quote:
Murray *TMM* wrote:

Folks:

Please use FF's validation to hit this page -

http://www.oakfurnituremaker.co.uk/test/index.asp

When I do that I get a host of warnings about unencoded "&" characters.
Yet, there are none on this page! Even is there were, what should I do
about them?

You do have them, take a look at your URL for your links to the product
pages:

e.g.:
a
href="c_thumb2.asp?menu=English&range=Contemporary &piece=Chairs">Chairs</a

notice the & in the query string, change those to &amp; and you'll start
to validate. However, it doesn't look like the code you're using server
side accomodates that type of usage, it probably splits the query string
based upon just the & character itself, so that will need to get addressed
*if* you page really needs to validate.


--
Enjoy,
Danilo Celic

| Extending Knowledge, Daily
| http://www.CommunityMX.com/

Those who aren't looking often have their eyes open widest.



Reply With Quote
  #4  
Old   
David
 
Posts: n/a

Default Re: Please validate this page - 11-09-2004 , 11:41 AM



ASP will process the &amp; as a straight & character when parsing the
variables from the UrlString. I've had to do the same thing quite often to
get it to validate, but the bottom line is, when it's read by the server,
the server understands that &amp; = &.


"danilocelic" <danilo (AT) shimmerphase (DOT) com> wrote

Quote:
Murray *TMM* wrote:

Folks:

Please use FF's validation to hit this page -

http://www.oakfurnituremaker.co.uk/test/index.asp

When I do that I get a host of warnings about unencoded "&" characters.
Yet, there are none on this page! Even is there were, what should I do
about them?

You do have them, take a look at your URL for your links to the product
pages:

e.g.:
a
href="c_thumb2.asp?menu=English&range=Contemporary &piece=Chairs">Chairs</a

notice the & in the query string, change those to &amp; and you'll start
to validate. However, it doesn't look like the code you're using server side
accomodates that type of usage, it probably splits the query string based
upon just the & character itself, so that will need to get addressed *if*
you page really needs to validate.
Quote:

--
Enjoy,
Danilo Celic

| Extending Knowledge, Daily
| http://www.CommunityMX.com/

Those who aren't looking often have their eyes open widest.



Reply With Quote
  #5  
Old   
Thierry Koblentz
 
Posts: n/a

Default Re: Please validate this page - 11-09-2004 , 11:46 AM



Murray *TMM* wrote:
Quote:
That's correct. How would it be addressed?
Murray,
You're getting old, you've asked the exact same question about 2 months ago


Thierry




Reply With Quote
  #6  
Old   
Murray *TMM*
 
Posts: n/a

Default Re: Please validate this page - 11-09-2004 , 11:49 AM



Whee! Thanks, David. It's valid now... 8)

--
Murray --- ICQ 71997575
Team Macromedia Volunteer for Dreamweaver
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com - Template Triage!
http://www.projectseven.com/go - DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs, Tutorials & Resources
http://www.macromedia.com/support/search/ - Macromedia (MM) Technotes
==================

"David" <david (AT) cfwebmasters (DOT) com> wrote

Quote:
ASP will process the &amp; as a straight & character when parsing the
variables from the UrlString. I've had to do the same thing quite often
to
get it to validate, but the bottom line is, when it's read by the server,
the server understands that &amp; = &.


"danilocelic" <danilo (AT) shimmerphase (DOT) com> wrote in message
news:cmqrav$lb0$1 (AT) forums (DOT) macromedia.com...
Murray *TMM* wrote:

Folks:

Please use FF's validation to hit this page -

http://www.oakfurnituremaker.co.uk/test/index.asp

When I do that I get a host of warnings about unencoded "&" characters.
Yet, there are none on this page! Even is there were, what should I do
about them?

You do have them, take a look at your URL for your links to the product
pages:

e.g.:
a
href="c_thumb2.asp?menu=English&range=Contemporary &piece=Chairs">Chairs</a

notice the & in the query string, change those to &amp; and you'll start
to validate. However, it doesn't look like the code you're using server
side
accomodates that type of usage, it probably splits the query string based
upon just the & character itself, so that will need to get addressed *if*
you page really needs to validate.


--
Enjoy,
Danilo Celic

| Extending Knowledge, Daily
| http://www.CommunityMX.com/

Those who aren't looking often have their eyes open widest.





Reply With Quote
  #7  
Old   
Murray *TMM*
 
Posts: n/a

Default Re: Please validate this page - 11-09-2004 , 11:56 AM



I am getting old. And - I did? Do you have a link?

--
Murray --- ICQ 71997575
Team Macromedia Volunteer for Dreamweaver
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com - Template Triage!
http://www.projectseven.com/go - DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs, Tutorials & Resources
http://www.macromedia.com/support/search/ - Macromedia (MM) Technotes
==================

"Thierry Koblentz" <thierry (AT) 212utah (DOT) invalid> wrote

Quote:
Murray *TMM* wrote:
That's correct. How would it be addressed?

Murray,
You're getting old, you've asked the exact same question about 2 months
ago


Thierry





Reply With Quote
  #8  
Old   
Murray *TMM*
 
Posts: n/a

Default Re: Please validate this page - 11-09-2004 , 11:57 AM



I would just contact them directly, David, and open a trouble ticket -

http://www.macromedia.com/support/email/complimentary/main.cgi


--
Murray --- ICQ 71997575
Team Macromedia Volunteer for Dreamweaver
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com - Template Triage!
http://www.projectseven.com/go - DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs, Tutorials & Resources
http://www.macromedia.com/support/search/ - Macromedia (MM) Technotes
==================

"David" <david (AT) cfwebmasters (DOT) com> wrote

Quote:
You're much welcome.

Think you could give me a hand on this one?

The instruction at "0x77f5b2ab" referenced memory at "0x00000028". The
memory could not be read. Click OK to terminate the application.

...and dreamweaver crashes...

I posted it earlier. You don't happen to have an inside connection at
Macromedia do you *whishfully hoping*



David Young
CFWebmasters.com
david (AT) cfwebmasters (DOT) com



"Murray *TMM*" <forums (AT) HAHAgreat-web-sights (DOT) com> wrote in message
news:cmqsiu$mta$1 (AT) forums (DOT) macromedia.com...
Whee! Thanks, David. It's valid now... 8)

--
Murray --- ICQ 71997575
Team Macromedia Volunteer for Dreamweaver
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com - Template Triage!
http://www.projectseven.com/go - DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs, Tutorials & Resources
http://www.macromedia.com/support/search/ - Macromedia (MM) Technotes
==================

"David" <david (AT) cfwebmasters (DOT) com> wrote in message
news:cmqrps$lv1$1 (AT) forums (DOT) macromedia.com...
ASP will process the &amp; as a straight & character when parsing the
variables from the UrlString. I've had to do the same thing quite
often
to
get it to validate, but the bottom line is, when it's read by the
server,
the server understands that &amp; = &.


"danilocelic" <danilo (AT) shimmerphase (DOT) com> wrote in message
news:cmqrav$lb0$1 (AT) forums (DOT) macromedia.com...
Murray *TMM* wrote:

Folks:

Please use FF's validation to hit this page -

http://www.oakfurnituremaker.co.uk/test/index.asp

When I do that I get a host of warnings about unencoded "&"
characters.
Yet, there are none on this page! Even is there were, what should I
do
about them?

You do have them, take a look at your URL for your links to the
product
pages:

e.g.:
a

href="c_thumb2.asp?menu=English&range=Contemporary &piece=Chairs">Chairs</a

notice the & in the query string, change those to &amp; and you'll
start
to validate. However, it doesn't look like the code you're using server
side
accomodates that type of usage, it probably splits the query string
based
upon just the & character itself, so that will need to get addressed
*if*
you page really needs to validate.


--
Enjoy,
Danilo Celic

| Extending Knowledge, Daily
| http://www.CommunityMX.com/

Those who aren't looking often have their eyes open widest.









Reply With Quote
  #9  
Old   
Michael Fesser
 
Posts: n/a

Default Re: Please validate this page - 11-09-2004 , 11:58 AM



.oO(danilocelic)

Quote:
notice the & in the query string, change those to &amp; and you'll start
to validate. However, it doesn't look like the code you're using server
side accomodates that type of usage, it probably splits the query string
based upon just the & character itself,
Nope, the server gets a real &, even if it's written as &amp; in the
source code. Character references are handled by the browser.

Quote:
so that will need to get
addressed *if* you page really needs to validate.
And if you want to avoid certain problems. Take this link for example:

http://www.example.com/?foo=bar&copy=allowed

What would you expect the browsers to do?

&copy; is a named entity. The trailing semicolon is not always necessary
(SGML allows to omit it in some cases), so the above link will lead to
http://www.example.com/?foo=bar©=allowed in some browsers (IE and FF for
example).

Micha


Reply With Quote
  #10  
Old   
David
 
Posts: n/a

Default Re: Please validate this page - 11-09-2004 , 11:58 AM



You're much welcome.

Think you could give me a hand on this one?

The instruction at "0x77f5b2ab" referenced memory at "0x00000028". The
memory could not be read. Click OK to terminate the application.

....and dreamweaver crashes...

I posted it earlier. You don't happen to have an inside connection at
Macromedia do you *whishfully hoping*



David Young
CFWebmasters.com
david (AT) cfwebmasters (DOT) com



"Murray *TMM*" <forums (AT) HAHAgreat-web-sights (DOT) com> wrote

Quote:
Whee! Thanks, David. It's valid now... 8)

--
Murray --- ICQ 71997575
Team Macromedia Volunteer for Dreamweaver
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com - Template Triage!
http://www.projectseven.com/go - DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs, Tutorials & Resources
http://www.macromedia.com/support/search/ - Macromedia (MM) Technotes
==================

"David" <david (AT) cfwebmasters (DOT) com> wrote in message
news:cmqrps$lv1$1 (AT) forums (DOT) macromedia.com...
ASP will process the &amp; as a straight & character when parsing the
variables from the UrlString. I've had to do the same thing quite often
to
get it to validate, but the bottom line is, when it's read by the
server,
the server understands that &amp; = &.


"danilocelic" <danilo (AT) shimmerphase (DOT) com> wrote in message
news:cmqrav$lb0$1 (AT) forums (DOT) macromedia.com...
Murray *TMM* wrote:

Folks:

Please use FF's validation to hit this page -

http://www.oakfurnituremaker.co.uk/test/index.asp

When I do that I get a host of warnings about unencoded "&"
characters.
Yet, there are none on this page! Even is there were, what should I
do
about them?

You do have them, take a look at your URL for your links to the product
pages:

e.g.:
a

href="c_thumb2.asp?menu=English&range=Contemporary &piece=Chairs">Chairs</a

notice the & in the query string, change those to &amp; and you'll
start
to validate. However, it doesn't look like the code you're using server
side
accomodates that type of usage, it probably splits the query string
based
upon just the & character itself, so that will need to get addressed
*if*
you page really needs to validate.


--
Enjoy,
Danilo Celic

| Extending Knowledge, Daily
| http://www.CommunityMX.com/

Those who aren't looking often have their eyes open widest.







Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.