Alex Waltrip wrote:

> It's like interpreting were turned off.  I mean that's the exactly how
> it comes out, HTML tags and text, if it were interpreted as a three row table I'd be 
>happier than a pig in Windows.
>

You probably forgot to set the content type in your servlet, before you call 
response.getWriter().  Add a line like
this:

    response.setContentType("text/html");

Most servers assume "text/plain" if you don't explicitly set the content type 
yourself, which causes the browser to
display it as plain text instead of interpreting the HTML.

>
> Any thoughts.
>
> Thanks for any ideas.
>
> --
> Alex Waltrip

Craig McClanahan

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

Reply via email to