I have a jsp page running under jboss 4.2.2 server.
The page structure looks something like this:
enable the head (the chapter is written on another page, for example, masterpage in aspx).
(body (where the problem appears))
(the foot is also written on another page).
The main page contains coding tags 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 on a page, for example ลฤฤฤฐรรงร(Turkish), the characters are displayed as "?" (question mark), what should I do to avoid this behavior?
How can I display the text in the same way as on the jsp page?
source
share