Re: IE Netscape

2000-12-06 Thread Manjunath.B.V.
- Original Message - From: "G.Nagarajan" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, December 06, 2000 12:19 AM Subject: RE: IE Netscape Hi, Try setting the content type to "text/html". Regards Nagaraj. -Original Message

IE Netscape

2000-12-05 Thread Adress, David S.
I have tomcat running and I have a jsp page. The page works fine in IE but in Netscape I see the actual html code ex: htmltitle etc... Any ideas ?

RE: IE Netscape

2000-12-05 Thread Eric Hartmann
You may configure Apache to send the content as html not text, change the line "DefaultType ..." to "DefaultType text/html". Eric -Original Message- From: Adress, David S. [mailto:[EMAIL PROTECTED]] Sent: mardi 5 décembre 2000 16:59 To: [EMAIL PROTECTED] Subject: I

RE: IE Netscape

2000-12-05 Thread G.Nagarajan
Hi, Try setting the content type to "text/html". Regards Nagaraj. -Original Message- From: Adress, David S. [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 05, 2000 4:59 PM To: [EMAIL PROTECTED] Subject: IE Netscape I have tomcat running and I have a jsp page. The page

RE: IE Netscape

2000-12-05 Thread Adress, David S.
Where do I set this? -Original Message- From: G.Nagarajan [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 05, 2000 1:49 PM To: [EMAIL PROTECTED] Subject: RE: IE Netscape Hi, Try setting the content type to "text/html". Regards Nagaraj. -Original Message- Fr

RE: IE Netscape

2000-12-05 Thread Adress, David S.
Thanks, it worked! -Original Message- From: G.Nagarajan [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 05, 2000 1:49 PM To: [EMAIL PROTECTED] Subject: RE: IE Netscape Hi, Try setting the content type to "text/html". Regards Nagaraj. -Original Message- From: Adr

RE: IE Netscape

2000-12-05 Thread Adress, David S.
Never mind. I got it! -Original Message- From: Adress, David S. [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 05, 2000 2:39 PM To: '[EMAIL PROTECTED]' Subject: RE: IE Netscape Where do I set this? -Original Message- From: G.Nagarajan [mailto:[EMAIL PROTECTED]] Sent

Re: IE Netscape

2000-12-05 Thread Kurt Bernhard Pruenner
"Adress, David S." wrote: G.Nagarajan wrote: Try setting the content type to "text/html". Where do I set this? Use response.setContentType("text/html") somewhere in the beginning of your doPost(...)/doGet(...) method, where "response" is the name of the HttpServletResponse parameter of