I wanted to send a page in ISO-8859-1 instead of UTF-8. The page is built with a JSP and some content retrieved by a CMS.
I tried to put this in the JSP, but the navigator stills performs the page in UTF-8.
grid.jsp:
<%@page contentType="text/html; charset=iso-8859-1"
pageEncoding="iso-8859-1"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
</head>
What could be the problem?
Am I missing something?