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>

[1745 byte] By [bhupinderd] at [2007-11-25 7:18:28]
# 1

Try inserting empty tags before the actual imports. Not sure if it will

work for css but it does work for js.

<html>

<head>

<script language="JavaScript">

<!--

add this empty tag if your js file is showing up

and then add the actual import tag

-->

</script>

<script language="JavaScript" src="/js/navigate.js"></script>

<style type="text/css">

<!--

add this empty tag if your css file is showing up

-->

</style>

<LINK href="top_files/laint.css" rel="stylesheet" type="text/css">

</head>

--

Bhupinder Dhillon - Web Applications Analyst

Calgary Health Region

bhupinderd at 2007-7-1 12:06:49 > top of Java-index,Web & Directory Servers,Web Servers...