Is ASPs “response.redirect” equivalent to the Servlet APIs “response.sendRedirect”?
I am getting data which is windows-1251 encoded in my JSP page from file/DB and printing it using the implicit out variable. But I see only a sequence of ‘?’ characters at the output. I am using the directive ‘<%@ page contentType="text/html; charset=windows-1251" %>‘ in my JSP page and ‘-encoding windows-1251’ as JVM argument when I start up the Resin server. Why is this so?