[EMAIL PROTECTED] wrote:
> Is there a way to change this value to either
> "text/html;charset=UTF-8" or failing that just plain "text/html",

see
javax.servlet.ServletResponse.setContentType(
     java.lang.String type)

in your JSP use something like
response.setContentType("text/html; charset=UTF-8");

Marc

Reply via email to