1
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 problems. However, I need her to send that same user name to another page called Search.jsp.
That is possible?
But which page will the user see? Startclient.jsp or Search.jsp? But, as @renanzin explained, if you added the attribute in the session, any page can access it.
– marcus