I have a jsp page running under jboss 4.2.2 server.
The structure for the page is something like this:
include head ( head is written on another page, like masterpage in aspx. )
(body ( where the problem appears ))
include foot ( foot is also written in another page. )
The head page contains the encoding and meta tags:
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
When I write characters in the page such as şğĞİÇçÖ
(Turkish) the characters are shown as "?" ( question mark ) what should I do to avoid this behavior?
How can I have the text shown just as writen in the jsp page?