JSP and session bean problem

2001-02-13 Thread Dominic Hanlan
Hi, I have an application with 2 jsps, the first, using a form gathers user data and the second then checks it. The second is the action="" of the first. I have a session bean which is used in the second jsp with the setProperty property="*" function to pick up the request parameters from the

Re: JSP and session bean problem

2001-02-13 Thread Troy Eric Echols
You may already have done this, but just in case. Make sure you have the scope set to "application" or "session", in order to use the same instance of the bean from different JSPs. The default is page scope, which means that the instance is local to the JSP. Troy Dominic Hanlan wrote: Hi,