Does not display

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I worked out the page in design view.
But it does not display in Preview or Display in Browser.
Any idea why?
FP2003 XP
 
Yes. But the universe of possibilities is too large to start guessing. Can
you post a link to the page?
 
The page is deeply horked.

The javscript functions in the head are repeated about eleventy times, and
there is a missing comment closing tag at the bottom of the script - the
redundant code will just make your page heavy and slow to load, but the
missing comment tag will make the page blank, as you see happening.

To solve the latter problem, change this -

</script>
<link rel="stylesheet" type="text/css" href="TW.css">
</head>

to this -

//-->
</script>
<link rel="stylesheet" type="text/css" href="TW.css">
</head>
 
--
bill


Murray said:
The page is deeply horked.

The javscript functions in the head are repeated about eleventy times, and
there is a missing comment closing tag at the bottom of the script - the
redundant code will just make your page heavy and slow to load, but the
missing comment tag will make the page blank, as you see happening.

To solve the latter problem, change this -

</script>
<link rel="stylesheet" type="text/css" href="TW.css">
</head>

to this -

//-->
</script>
<link rel="stylesheet" type="text/css" href="TW.css">
</head>


--
Murray
============




Thanksonce again murray.
noy sure why the java script functions repeated eleventy times. It is
disturbing.
It was inserted by FP when I inserted the interactive buttons.

never heard the word horked before.
Thanx again
 
Must stem from: "torqued" - which is what I've always used, but it's hard
to spell :-)
 
Back
Top