I'm gonna jump! CSS Text displays in Browser!!!
I am using Communicator 4.7 and am having the following problem.
The text from my CSS (externally linked) actually displays in the
browser if my web site is running from IPLANET on an HP unix server.
Here are the weird things......
-Clicking refesh on the browser will make it go away and sometimes make
it come back!
-Everything works fine when the same page is served from Apache!
-The same version of Navigator installed on a different machine works
fine againt the same IPLANET and Apache servers! (Go figure)
-I embedded the CSS directly into the html and the problem goes away.
-Sometimes my javascript also displays in the browser.
-Everything work fine on both servers (IPLANET,Apache)using Internet
Explorer.
Below is a bit of cut and pasted code. Any insight would be a big help.
I am about to lose it!!!!
Thanks,
Pete
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<TITLE>Hello World</TITLE>
<LINK href="top_files/laint.css" rel="stylesheet" type="text/css">
<SCRIPT LANGUAGE="JavaScript" SRC="/js/navigate.js"
type="text/javascript">
</SCRIPT>
<SCRIPT LANGUAGE="JavaScript" type="text/javascript">
//Code borrowed from
http://www.idocs.com/tags/forms/index_famsupp_157.html
function enterKeyPressed(e)
{
var keycode;
if (window.event) keycode = window.event.keyCode;
else if (e) keycode = e.which;
else return false;
if (keycode == 13)
{
return true;
}
else
return false;
}
</SCRIPT>

