Incorrect decoding of META REFRESH tag

  • Thread starter Thread starter Shanti Rao
  • Start date Start date
S

Shanti Rao

Open this web page in IE 6.0.28xx

<html>
<meta http-equiv="refresh"
content="0;url=http://www.halcyon.com/shanti/test.cgi?
foo=bar&region=us">
</html>

Line 25 of the environment string reports
QUERY_STRING=foo=bar®ion=us

Which should really be
QUERY_STRING=foo=bar&region=us
 
Open this web page in IE 6.0.28xx

<html>
<meta http-equiv="refresh"
content="0;url=http://www.halcyon.com/shanti/test.cgi?
foo=bar&region=us">
</html>

Line 25 of the environment string reports
QUERY_STRING=foo=bar®ion=us

Which should really be
QUERY_STRING=foo=bar&region=us

-----------

In the meta tag you have '&reg', which is the entity for the Trade Mark
symbol.

The meta tag should instead contain '&amp;region'.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top