I have a jsp page(let's say page1.jsp) which have an html form with action="page2.jsp".
In page1.jsp and page2.jsp i have <%@page contentType="text/html;charset=UTF-8" pageEncoding="UTF-8"%>
outside the head section and <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
in the head section.
If i write greek letters in the form i see in the url(get method) something like that
http://localhost:8080//addProblem.jsp?lastNameForm=%CF%84%CF%85%CE%B8%CF%84%CF%85%CE%B8%CF%84%CF%85&firstNameForm=&eMa ....
and from page2.Jsp with the use of <% out.println(request.getParameter("lastNameForm")); %>
i get this αÏδαÏδ
What can i do?