I have a Servlet that does the following:
L_sessao.setAttribute("Login", usuario);
response.sendRedirect("InicioCliente.jsp");
It sends the user name to the HomeClient.jsp page, on this page I can recover it without any problems. But I need it to send that same username to another page called Search.jsp.
Is this possible?