In general Netscape is a lot more fussy about HTML than Explorer, so you
probably have an error the code your servlet returns. For instance make sure
your content type is set:
res.setContentType("text/html");
and make sure that you flush and close your PrintWriter :
out.flush();
out.close();
If that doesn't work try looking at your code to be sure that your tags are
balanced, especially tables ( </tr> for every <tr> etc).
Gary Lyons
gutschi wrote:
> I develop servlets using Sun's JavaWebServer 2.0 on Win 95.
> When I execute the servlets with Internet Explorer 4/5/5.5 there's no
> problem; but if I want to test them with Netscape (4.x & 6) only the HTML
> source code is shown. Does anybody have the same problem? Is there a
> workaround?
>
> Thanks in advance.
>
> Michael Weller
>
> ___________________________________________________________________________
> To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
> of the message "signoff SERVLET-INTEREST".
>
> Archives: http://archives.java.sun.com/archives/servlet-interest.html
> Resources: http://java.sun.com/products/servlet/external-resources.html
> LISTSERV Help: http://www.lsoft.com/manuals/user/user.html
___________________________________________________________________________
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff SERVLET-INTEREST".
Archives: http://archives.java.sun.com/archives/servlet-interest.html
Resources: http://java.sun.com/products/servlet/external-resources.html
LISTSERV Help: http://www.lsoft.com/manuals/user/user.html