problem with formbean in request scope
Hi,
In my application, we have some form beans, due to some constraints we kept those form beans in request scope.
we have VO object in the form bean.
I got the values in that VO in the response jsp page... when i modify the values and trying to update those values(resubmitting the form), the form bean instance is again creating.
To do that update successfully, i need the values present in that VO object.
Is there any way to keep those values in Form bean without going for session scope???
Thanks in advance