El tema es este, hice una aplicacion jsp y utilice netbeans. Para visualizar la aplicacion utilice el tomcat q viene con el mismo y todo funcionaba bien, ahora este pequeño problema me surgió cuando lo subí.
Si utilizo esta sintaxis para el charset, se me visualiza bien con el de netbeans:
<%@page errorPage="myError.jsp?from=Articulo.jsp"%>
<%@page pageEncoding="UTF-8"%>
<%@page language="java"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Modificacion de Artículo</title>
<meta http-equiv="Content-Type" Content="text/html;charset=iso-8859-1">
en cambio para usar el servidor apache tuve q poner así:
<%@page errorPage="myError.jsp?from=abmNovedades.jsp"%>
<%@page language="java"%>
<%@page pageEncoding="UTF-8"%>
<%@page contentType="text/html; charset=iso-8859-1"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Novedades</title>
<meta http-equiv="Content-Type">
<link href="style/zingueria.css" rel="stylesheet" type="text/css">
<script language="javascript" src="scripts/zingueria.js"></script>
</head>
Alguien me puede decir, porque o si algo esta mal?
Desde ya muchas gracias.