Hi again,
I have just contacted Netscape and they have sent A VERY PROMPT REPLY!!!(Took about 2 minutes!!) At least they have one thing right... LOL
Here is there reply..
============================================================
Your asp pages are being reported as text/plain. This does not effect IE since it sniffs content and ignores the content type. However that approach is insecure and Mozilla/Netscape 6 rely on the content type
reported by the web server. Change the content type for your asp pages to be text/html and all will be fine. This can either be done in your web server or in your asp scripts. See Microsoft's documentation for the
details.
Here is the output of headers from one of your asp pages:
input url:
------------------------------------------------------------------------
fully qualified url:
------------------------------------------------------------------------
will send these HTTP Request headers:
Accept:
text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,video/x-mng,image/png,image/jpeg,image/gif;q=0.2,text/css,*/*;q=0.1
Accept-Charset: windows-1252, utf-8;q=0.66, *;q=0.66
Accept-Language: en-us
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:0.9.8+)
Gecko/20020213 Netscape6/6.2.1+
Host:
------------------------------------------------------------------------
calling gethostbyname_r() on
succeeded
------------------------------------------------------------------------
calling connect()
succeeded
------------------------------------------------------------------------
HTTP/1.1 200 OKCRLF
Date: Wed, 20 Feb 2002 09:54:39 GMTCRLF
Server: Apache/1.3.17 (Unix) PHP/3.0.18 FrontPage/4.0.4.3 mod_ssl/2.8.0
OpenSSL/0.9.6 CRLF
Last-Modified: Tue, 06 Feb 2001 21:56:54 GMTCRLF
ETag: "40b208-200b-3a807326" CRLF
Accept-Ranges: bytes CRLF
Content-Length: 8203 CRLF
Connection: close CRLF
Content-Type: text/plain CRLF
CRLF
Note the Content-Type: text/plain. This should be text/html to be
properly displayed.
Bob
--
Netscape 6 Technology Evangelists
Netscape Communications
nsdev-feedback@netscape.com
===========================================================
So there is the problem,
Hope this helps Wullie