I have a class in which I get two surnames from a database;
dbapellidos=rs.getString("Apellidos");
but I want to pass it to a jsp page through session
sesion.setAttribute("Apellidos", dbapellidos);
and when I get it on the page, I only get the first name:
session.getAttribute("Apellidos");
I have tried to put two last names followed by a script and if you take it.
Thank you very much in advance