Wrox Home  
Search P2P Archive for: Go

  Return to Index  

html_code_clinic thread: netscape and frames help


Message #1 by soni29@h... on Wed, 31 Jul 2002 16:39:28
Just a quick suggestion: normally we enclose the noframes tag within the
frameset tag.  Also the body container tag is replaced by the frameset tag
so is not necessary. - eg:

<html>
<head><title>Welcome </title></head>
<frameset rows="128,*" frameborder="NO" border="0" framespacing="0">
  <frame src="navigation.html" name="navigation" scrolling="NO" noresize
border="0" framespacing="0" frameborder="NO">
  <frame src="home.html" name="main">
<noframes>content here</noframes>
</frameset>
</html>

IE lets you get away with almost anything while Mozilla and Netscape tend to
be much stricter on syntax so a good way to debug would be to remove all the
tag attributes - check that it works and then add them back in one or two at
a time.  Once it messes up you then have the attribute causing the problem.

Hope this helps,
Andrew
Professional Java Servlets 2.3
http://www.amazon.com/exec/obidos/ASIN/186100561X
http://www.amazon.co.uk/exec/obidos/ASIN/186100561X



  Return to Index