Think of it this way - when a user sends a
request, it is NOT necessary that this response to that request be generated in the one
servlet or JSP. It can span more than one JSP page, right! Now that you know that your request will be going from one page to the other,
you should recognize that its the same request and you are trying to generate a response.
When you instantiate a Bean on the request scope, then this bean is available in all the JSP pages that you send this req object to.
Actually, if you play with the code that I suggested in your useBean post, you should be able to clear this doubt also.
Let me know if you need a different explanation...
- satya
[ February 09, 2002: Message edited by: Madhav Lakkapragada ]