Request.setAttribute between classes
Hi I'm trying to keep a userid from a class call ActionLogin to then use it to select products bought by that user
request.setAttribute("userid", login);
Then I realize that userid isn't keeping anything when I'm tryin got access it with
request.getParameter("userid") or
request.getAttribute("userid")
I just get a null string when I do this from another class or that same class.. am I supposed to use something else?

