Hey guys,
In JSP I used to create my sessions in my servlet like this:
session.setAttribute("user", username);
and then call it from a JSP page like this:
<%= session.getAttribute("user") %>
However this does not work in JSPX pages and its driving me crazy.
Can any one help me?
Any help would be appreciated