Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Page displays in IE but Not Netscape 1

Status
Not open for further replies.

Turkbear

Technical User
Mar 22, 2002
8,631
US
Hi, I'm puzzled..
I have this page ( SecureLogin.asp) that shows fine in Internet Explorer(5.5 and 6) but in Netscape(4.77) only the background shows..

Anything obvious That I'm missing? [dazed]

Here is the code ( edited for security )for the page:
Code:
<html>
<head>
<title> :: Login form :: </title>
</head>

<body bgcolor=&quot;#FFFFFF&quot; background=&quot;/images/templates/blue.gif&quot;>
<table width=&quot;628&quot; border=&quot;0&quot; cellspacing=&quot;0&quot; cellpadding=&quot;3&quot;>
	<tr>
	
    <td width=&quot;168&quot; align=&quot;left&quot; valign=&quot;top&quot;> 
      <p>
<img src=&quot;/images/templates/spacer.gif&quot; width=&quot;30&quot; height=&quot;71&quot;> <a href=&quot;/&quot;><img src=&quot;/images/templates/logo.gif&quot; width=&quot;71&quot; height=&quot;71&quot; alt=&quot;Our Logo&quot; border=&quot;0&quot;></a> 
<br>
<br>
<img src=&quot;/images/templates/rspacer.gif&quot; width=&quot;30&quot; height=&quot;42&quot;>
<a href=&quot;[URL unfurl="true"]http://www.xxx.xxx.xxx/&quot;><img[/URL] src=&quot;/images/templates/intranetlogo.gif&quot; width=&quot;74&quot; height=&quot;42&quot; alt=&quot;Intranet&quot; border=&quot;0&quot;></a>

<img src=&quot;/images/templates/spacer.gif&quot; width=&quot;165&quot; height=&quot;5&quot;><br>
      <font face=&quot;Arial, Helvetica, sans-serif, Geneva, Swiss&quot; size=&quot;2&quot;><b> 
      <br>
      
<a href=&quot;[URL unfurl="true"]http://www.xxx.xxx.xxx/newsline/employeeline.html&quot;><img[/URL] src=&quot;/images/templates/emp_banner35.gif&quot; width=&quot;130&quot; height=&quot;26&quot;></a><br> 
      <font face=&quot;Arial, Helvetica, sans-serif, Geneva, Swiss&quot; size=&quot;2&quot;><b> 
      </b>
      
      <br>
        <br>
      <A class=&quot;nound&quot; href=&quot;mailto:webmaster@xxx.xxx&quot;> <b>Contact 
      Site Mgr</b></a><br>
      <br>
      </font> 
      <hr width=&quot;128&quot; size=&quot;5&quot; align=&quot;left&quot;>
<br>


</td>
    <td width=&quot;500&quot; valign=&quot;top&quot; align=&quot;left&quot;> 
    <img src=&quot;/images/templates/ofclogo.gif&quot; width=&quot;132&quot; height=&quot;71&quot; align=&quot;left&quot; alt=&quot;Office Logo&quot; border=&quot;0&quot;>
<%
 if Request.Form(&quot;tries&quot;) > 2 then
 Session(&quot;attempts&quot;) = 0
 Response.Redirect &quot;Sorry.asp&quot;
 Else %>
 <table align=&quot;center&quot;>
 <TR>
 <H2> This is the Secured Access Login  Page for  Security Related  Reports</H2>
 </TR>
 <TR>
 <H4> Enter your Authorized Username and Password to access the Reports </H4>
  </TR>
  <TR>
  <TD>
<form method=&quot;post&quot; action=&quot;[URL unfurl="true"]http://irmrpts/Security/SecurePage.asp&quot;>[/URL]
Username: <input type=&quot;text&quot; name=&quot;username&quot;><br>
Password: <input type=&quot;password&quot; name=&quot;password&quot;><br>
<input type=&quot;submit&quot; value=&quot;Login&quot;> <input type=&quot;reset&quot;>
</TD>
</TR>

</form>
<% end if %>
</table>
           <hr>
<div align=&quot;center&quot;><font face=&quot;Arial, Helvetica, sans-serif&quot; size=&quot;-2&quot;>Minnesota 
  Government links: <a href=&quot;[URL unfurl="true"]http://www.xxx.xxx/&quot;>MainPage</a>[/URL] | <a href=&quot;[URL unfurl="true"]http://www.mainserver.xxx.xxx/executive/&quot;>Executive[/URL] 
  Office</a><a href=&quot;[URL unfurl="true"]http://www.xxx.xxx/&quot;><br>[/URL]
  Our External Web site</a><br>
  General questions: <a href=&quot;mailto:info@xxx.xxx.xxx&quot;>info@xxx.xxx.xxx</a><a href=&quot;[URL unfurl="true"]http://www.xxx.xxx/&quot;></a>[/URL] 
  </font></div>

</body>
</html>

Please Help...Thanks,
[profile]
 
netscape 4 is GREAT for Trouble shooting tables. If you miss a tag somewhere it doesn't show the contents of the page. You're missing a </table> tag somewhere. I put it in front page, counted 2 <table> tags and 1 </table> tag. hope it helped.
 
Thanks !! [bigsmile]

That was it...I added a [/table] at the end of the page
( any other place messed up the layout) and all was well...

That led me to test a few more of my pages that used the layout of this one as a template and made the changes I needed to those after discovering they had the same problem in Netscape...I need to remember to do that more often - I tend to forget to test in Netscape since more and more of my users are using IE ( which, as a display browser, I much prefer )

Thanks again..
[profile]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top