ok here goes another problem with form beans.
i have a form (registration.jsp) which is associated with a form bean. The bean is in session scope. I need it in the session for various reasons which i wont go into right now. Now everything happens fine and when i submit the page all goes fine.
However, when i come back into the page like suppose on submit i have to go back into home page and have a link to get back into registration.jsp then the form bean that comes into memory is the exact same one as the previous one.
How do i know this, i printed out all the objects in request scope. When i did this i found out that the form bean alone referred to the exact same address irrespective of the round trips that i made to the server.
As a result of this problem, my
jsp pages retains all the values and basically i have a refresh problem. Is there a way i can remove the form bean on sucess of the page without putting any more holes into my code
