I have a Login.jsp page which has the action="session.jsp" set for a login form.
In the Login page, the session parameters are set as
<% String username = request.getParameter("username"); session.setAttribute("username", username); %> Now when I try to access these values in the session page
Welcome <%= session.getAttribute("username") %> I get a Welcome null
Any thoughts?