no pageEncoding

I'm trying to give a program response with JSP but the program compaints about the give Charset.

The program sends a URL with paramaters to the JSP page and needs the content generated by the JSP page to work properly. The response is not allowed to have any kind of charset. So I need JSP to give a response to the program with no charset.

Is this possible? Can't find my answer with Google.


Comments

  • pageEncoding:The encoding used for the JSP page file, as well as
    the response charset if no charset is specified by contentType.

    If this attribute is omitted, but a charset is specified for contentType,
    that charset is also used of the page; if contentType doesn't specify a charset, ISO-8859-1 is used for a regular JSP page, and UTF-8 is used for a JSP Document.

    you can use response.setCharaterEncoding() to set the charset for jsp

    hope it helps

    [link=http://www.raqsoft.com/]RAQ Report---Enjoy Products and Services of RAQSOFT [/link]

Sign In or Register to comment.

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Categories

In this Discussion