Then in the adduser.jsp page I get the name with the command:
String name = request.getParameter( "user" );
The problem is when I give greek names. For example, if I insert the name "νίκος" the result in the jsp page is "???".
I tried adding " accept-charset="iso-8859-7" ", which is recommended for greek, but nothing happened. Any ideas?
Bookmarks