0 Replies Latest reply on Jul 20, 2004 9:57 AM by mozheyko_d

    3.2.3 -> 3.2.5 JSP Encoding problem

    mozheyko_d

      I use russian symbols ("koi8-r" encoding) in my jsp's and my code works in 3.2.3 fine:

      <%@ page contentType="text/html; charset=koi8-r" %>
      ...
      <%
       request.setCharacterEncoding( "koi8-r");
       String s = request.getParameter( "param1");
       out.print( s);
      %>
      ...
      


      But when i deploy my application in 3.2.5
      I receive "???????" - string on output.

      Any ideas ?