RE: what should i do to set the session in the pageContext in a Action class?

2004-04-19 Thread Qayyum, Kashif
Check out: http://java.sun.com/products/servlet/2.2/javadoc/javax/servlet/jsp/PageContext.html It seems that pageContext is a jsp-only context. You should bind the object to either request or session context, and then use a bean:define tag to pull the object out of the request/session and put

what should i do to set the session in the pageContext in a Action class?

2004-04-17 Thread Ricky Lee
hi, thanks for reading.. i have a problem about set the seesion(pageContext) in the action class.. i know that set the seesion in the request, just like request.getSession().setAttribute(login_username,userForm.getUsername()); and in the JSP page, we can use the code to get the seesion: