-
encoding issue in jsp
Hi All,
I have an application where in i have an add and edit option ,when i add/edit an euro symbol it appears as "â?¬267" instead of "€267".
my jsp encoding is as follows:
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
Can anyone say me the solution,is it because of pageEncoding="ISO-8859-1"??
i have tried it changing to utf-8 but it failed.
Thankx